-
-
- #ifndef SdFatConfig_h
- #define SdFatConfig_h
- #include <stdint.h>
-
-
-
- #ifdef __arm__
- #define USE_SEPARATE_FAT_CACHE 1
- #else
- #define USE_SEPARATE_FAT_CACHE 0
- #endif
-
-
- #if defined(RAMEND) && RAMEND < 3000
- #define USE_MULTI_BLOCK_SD_IO 0
- #else
- #define USE_MULTI_BLOCK_SD_IO 1
- #endif
-
-
-
- #define USE_SD_CRC 0
-
-
- #define USE_MULTIPLE_CARDS 0
-
-
- #define DESTRUCTOR_CLOSES_FILE 0
-
-
- #define USE_SERIAL_FOR_STD_OUT 0
-
-
- #define ENDL_CALLS_FLUSH 0
-
-
- #define FAT12_SUPPORT 0
-
-
- #ifdef __AVR__
- const uint8_t SPI_SCK_INIT_DIVISOR = 64;
- #else
- const uint8_t SPI_SCK_INIT_DIVISOR = 128;
- #endif
-
-
- #define ENABLE_SPI_TRANSACTION 0
-
-
- #define ENABLE_SPI_YIELD 0
-
-
- #define USE_ARDUINO_SPI_LIBRARY 0
-
-
- #define AVR_SOFT_SPI 0
-
-
- #define DUE_SOFT_SPI 0
-
-
-
- #define LEONARDO_SOFT_SPI 0
-
-
- #define MEGA_SOFT_SPI 0
-
-
- #define TEENSY3_SOFT_SPI 0
-
-
-
-
- uint8_t const SOFT_SPI_CS_PIN = 10;
-
- uint8_t const SOFT_SPI_MOSI_PIN = 11;
-
- uint8_t const SOFT_SPI_MISO_PIN = 12;
-
- uint8_t const SOFT_SPI_SCK_PIN = 13;
- #endif
|