No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

15 líneas
571B

  1. Software SPI is now supported on AVR, Due, and Teensy 3.x boards.
  2. The most general approach is to set USE_MULTIPLE_SPI_TYPES nonzero
  3. in SdFatConfig.h.
  4. //------------------------------------------------------------------------------
  5. /**
  6. * Set USE_MULTIPLE_SPI_TYPES nonzero to enable the SdFatSoftSpi and
  7. * SdFatLibSpi classes. SdFatSoftSpi uses software SPI and SdFatLibSpi
  8. * uses the standard Arduino SPI library.
  9. */
  10. #define USE_MULTIPLE_SPI_TYPES 0
  11. You can also edit other configuration options in SdFatConfig.h to
  12. change the type of SPI used by the SdFat class.