Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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