Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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