Kconfig 808 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. menu "Hardware Drivers Config"
  2. config BSP_USING_HYPERFLASH
  3. bool
  4. default n
  5. config BSP_USING_4MFLASH
  6. bool
  7. default n
  8. config SOC_MIMXRT1064DVL6A
  9. bool
  10. select SOC_MIMXRT1064_SERIES
  11. select BSP_USING_4MFLASH
  12. select RT_USING_COMPONENTS_INIT
  13. select RT_USING_USER_MAIN
  14. default y
  15. menu "On-chip Peripheral Drivers"
  16. config BSP_USING_GPIO
  17. bool "Enable GPIO"
  18. select RT_USING_PIN
  19. default y
  20. menuconfig BSP_USING_LPUART
  21. bool "Enable UART"
  22. select RT_USING_SERIAL
  23. default y
  24. if BSP_USING_LPUART
  25. config BSP_USING_LPUART1
  26. bool "Enable LPUART1"
  27. default y
  28. endif
  29. endmenu
  30. menu "Onboard Peripheral Drivers"
  31. endmenu
  32. menu "Board extended module Drivers"
  33. endmenu
  34. endmenu