Kconfig 626 B

1234567891011121314151617181920212223242526272829303132333435
  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_USING_SAI_AUDIO
  17. select RT_USING_AUDIO
  18. bool "Enable AUDIO"
  19. default n
  20. config RT_RTC_NAME
  21. string "The name of RTC device"
  22. default rtc
  23. if RT_USING_LWIP
  24. config CONFIG_PCF8574
  25. bool
  26. select RT_USING_I2C
  27. select RT_USING_I2C_BITOPS
  28. endif