Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

15 Zeilen
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.