config.h 448 B

123456789101112131415161718
  1. #ifndef _CONFIG_H
  2. #define _CONFIG_H
  3. #define SDCARD_DETECT (1)
  4. #define SDCARD_WP (0)
  5. #define SD_SUPPLY_VOLTAGE (1L<<21) /* 3.3V - 3.4V */
  6. #define CONFIG_SD_BLOCKTRANSFER 1
  7. #define CONFIG_SD_AUTO_RETRIES 10
  8. #define CONFIG_SD_DATACRC 1
  9. #define CONFIG_UART_NUM 3
  10. #define CONFIG_CPU_FREQUENCY 90315789
  11. #define CONFIG_UART_PCLKDIV 1
  12. #define CONFIG_UART_TX_BUF_SHIFT 5
  13. #define CONFIG_UART_BAUDRATE 921600
  14. #define CONFIG_UART_DEADLOCKABLE
  15. #endif