Kconfig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. menu "Hardware Drivers Config"
  2. config SOC_STM32F469NI
  3. bool
  4. select SOC_SERIES_STM32F4
  5. default y
  6. menu "Onboard Peripheral Drivers"
  7. config BSP_USING_SDRAM
  8. bool "Enable SDRAM"
  9. select BSP_USING_FMC
  10. default n
  11. config BSP_USING_QSPI_FLASH
  12. bool "Enable QSPI FLASH (N25Q128A qspi1)"
  13. select BSP_USING_QSPI
  14. select RT_USING_SFUD
  15. select RT_SFUD_USING_QSPI
  16. select PKG_USING_FAL
  17. select FAL_USING_SFUD_PORT
  18. default n
  19. config BSP_MOUNT_QSPI_WITH_LFS
  20. bool "Mount QSPI flash to / with little fs"
  21. depends on BSP_USING_QSPI_FLASH
  22. select PKG_USING_LITTLEFS
  23. select RT_USING_MTD_NOR
  24. select RT_USING_DFS
  25. default y
  26. endmenu
  27. menu "On-chip Peripheral Drivers"
  28. config BSP_USING_GPIO
  29. bool "Enable GPIO"
  30. select RT_USING_PIN
  31. default y
  32. menuconfig BSP_USING_UART
  33. bool "Enable UART"
  34. default y
  35. select RT_USING_SERIAL
  36. if BSP_USING_UART
  37. config BSP_USING_UART3
  38. bool "Enable UART3"
  39. default y
  40. config BSP_UART3_RX_USING_DMA
  41. bool "Enable UART3 RX DMA"
  42. depends on BSP_USING_UART3 && RT_SERIAL_USING_DMA
  43. default n
  44. endif
  45. config BSP_USING_QSPI
  46. bool "Enable QSPI BUS"
  47. select RT_USING_QSPI
  48. select RT_USING_SPI
  49. default n
  50. config BSP_USING_ON_CHIP_FLASH
  51. bool "Enable on-chip FLASH"
  52. default n
  53. config BSP_USING_FMC
  54. bool
  55. default n
  56. config BSP_USING_USBD_FS
  57. bool "Enable OTGFS as USB device"
  58. select RT_USING_USB_DEVICE
  59. default n
  60. endmenu
  61. menu "Board extended module Drivers"
  62. endmenu
  63. endmenu