Kconfig 535 B

123456789101112131415161718192021222324252627282930
  1. config RT_USING_EXT_SDRAM
  2. bool "Enable SDRAM on the board"
  3. default y
  4. config RT_USING_UART1
  5. bool "Enable UART1"
  6. default y
  7. config RT_USING_UART2
  8. bool "Enable UART2"
  9. default y
  10. config RT_USING_UART3
  11. bool "Enable UART3"
  12. default y
  13. config RT_USING_SPI5
  14. bool "Enable SPI5"
  15. default y
  16. config RT_RTC_NAME
  17. string "The name of RTC device"
  18. default rtc
  19. if RT_USING_LWIP
  20. config CONFIG_PCF8574
  21. bool
  22. select RT_USING_I2C
  23. select RT_USING_I2C_BITOPS
  24. endif