Kconfig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. menu "Hardware Drivers Config"
  2. config msp432e401y
  3. bool
  4. select RT_USING_COMPONENTS_INIT
  5. select RT_USING_USER_MAIN
  6. default y
  7. menu "On-chip Peripheral Drivers"
  8. config BSP_USING_GPIO
  9. bool "Enable GPIO"
  10. select RT_USING_PIN
  11. default y
  12. menuconfig BSP_USING_UART
  13. bool "Enable UART"
  14. default y
  15. select RT_USING_SERIAL
  16. if BSP_USING_UART
  17. config BSP_USING_UART0
  18. bool "Enable UART0"
  19. default y
  20. config BSP_USING_UART1
  21. bool "Enable UART1"
  22. default n
  23. config BSP_UART1_RX_USING_DMA
  24. bool "Enable UART1 RX DMA"
  25. depends on BSP_USING_UART1 && RT_SERIAL_USING_DMA
  26. default n
  27. config BSP_USING_UART2
  28. bool "Enable UART2"
  29. default n
  30. config BSP_UART2_RX_USING_DMA
  31. bool "Enable UART2 RX DMA"
  32. depends on BSP_USING_UART2 && RT_SERIAL_USING_DMA
  33. default n
  34. config BSP_USING_UART3
  35. bool "Enable UART3"
  36. default n
  37. config BSP_UART3_RX_USING_DMA
  38. bool "Enable UART3 RX DMA"
  39. depends on BSP_USING_UART3 && RT_SERIAL_USING_DMA
  40. default n
  41. endif
  42. endmenu
  43. menu "Board extended module Drivers"
  44. endmenu
  45. endmenu