Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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