Kconfig 347 B

12345678910111213141516171819202122
  1. menu "Hardware Drivers Config"
  2. config SOC_NRF52832
  3. bool
  4. select RT_USING_COMPONENTS_INIT
  5. # select RT_USING_USER_MAIN
  6. default y
  7. menu "Onboard Peripheral Drivers"
  8. endmenu
  9. menu "On-chip Peripheral Drivers"
  10. menuconfig BSP_USING_UART
  11. bool "Enable UART"
  12. default y
  13. select RT_USING_SERIAL
  14. endmenu
  15. endmenu