Kconfig 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. menu "Hardware Drivers Config"
  2. menu "On-chip Peripheral Drivers"
  3. source "$BSP_DIR/../libraries/m2354/rtt_port/Kconfig"
  4. endmenu
  5. menu "On-board Peripheral Drivers"
  6. config BSP_USING_NULINKME
  7. bool "Enable UART0 for RTT Console.(uart0)"
  8. select BSP_USING_UART
  9. select BSP_USING_UART0
  10. default y
  11. config BOARD_USING_ESP8266
  12. bool "ESP8266 Wi-Fi module supporting(over uart4)"
  13. select BSP_USING_UART
  14. select BSP_USING_UART4
  15. select BSP_USING_UART4_RX_DMA
  16. select BSP_USING_UART4_TX_DMA
  17. select PKG_USING_AT_DEVICE
  18. select AT_DEVICE_USING_ESP8266
  19. select AT_DEVICE_ESP8266_INIT_ASYN
  20. default n
  21. config BOARD_USING_STORAGE_SDCARD
  22. bool "SDCARD supporting.(over sdh0)"
  23. select BSP_USING_SDH
  24. select BSP_USING_SDH0
  25. default n
  26. choice
  27. prompt "Select FS USB Ports"
  28. config BOARD_USING_USBD
  29. select BSP_USING_USBD
  30. bool "Enable USBD(over USB1.1)"
  31. help
  32. Choose this option if you need USBD function mode.
  33. config BOARD_USING_USBH
  34. select BSP_USING_USBH
  35. bool "Enable USBH(over USB1.1)"
  36. help
  37. Choose this option if you need USBH function mode.
  38. config BOARD_USING_OTG
  39. select BSP_USING_OTG
  40. bool "Enable OTG(over USB1.1)"
  41. help
  42. Choose this option if you need OTG function mode.
  43. config BOARD_USING_USB_NONE
  44. select BSP_USING_USB_NONE
  45. bool "Disable USB1.1 port"
  46. help
  47. Choose this option if you need not USB function.
  48. endchoice
  49. endmenu
  50. menu "Board extended module drivers"
  51. config BOARD_USING_SEGMENT_LCD
  52. bool "Segment LCD supporting.(over lcd)"
  53. select BSP_USING_SLCD
  54. default n
  55. endmenu
  56. endmenu