| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- menu "Hardware Drivers"
- menu "On-chip Peripheral Drivers"
- menuconfig BSP_USING_UART
- bool "Enable UART"
- default y
- select USE_SERIAL # sdk serial component
- select RT_USING_SERIAL
- if BSP_USING_UART
- config RT_USING_UART1
- bool "Enable UART1"
- default y
-
- config RT_USING_UART0
- bool "Enable UART0"
- default n
- endif
- menuconfig BSP_USING_SPI
- bool "Enable Spi"
- default n
- select USE_SPI # sdk spi component
- select RT_USING_SPI
- if BSP_USING_SPI
- config RT_USING_SPIM0
- bool "Enable spim0"
- default n
- config RT_USING_SPIM1
- bool "Enable spim1"
- default n
-
- config RT_USING_SPIM2
- bool "Enable spim2"
- default y
- config RT_USING_SPIM3
- bool "Enable spim3"
- default n
- endif
- menuconfig BSP_USING_CAN
- bool "Enable CAN"
- default n
- select RT_USING_CAN
- select RT_CAN_USING_HDR
- select RT_CAN_USING_CANFD
- menuconfig BSP_USING_GPIO
- bool "Enable GPIO"
- default n
- select RT_USING_PIN
- menuconfig BSP_USING_QSPI
- bool "Enable QSPI"
- default n
- select RT_USING_QSPI
- select RT_USING_SPI
- select BSP_USING_SPI
- select BSP_USING_GPIO
- if BSP_USING_QSPI
- config USING_QSPI_CHANNEL0
- bool "using qspi channel_0"
- default n
- config USING_QSPI_CHANNEL1
- bool "using qspi channel_1"
- default n
- endif
- menuconfig BSP_USING_ETH
- bool "Enable ETH"
- default y
- select USE_ETH
- if BSP_USING_ETH
- config RT_LWIP_PBUF_POOL_BUFSIZE
- int "The size of each pbuf in the pbuf pool"
- range 1500 2000
- default 1700
- endif
-
-
-
- menuconfig BSP_USING_SDIO
- bool "Enable SDIO"
- default y
- select RT_USING_SDIO
-
- if BSP_USING_SDIO
- config BSP_USING_SDCARD_FATFS
- bool "Enable SDCARD (FATFS)"
- select RT_USING_DFS_ELMFAT
- default y
-
- choice
- prompt "Choose a card to mount"
- default USING_SDIO1
- config USING_SDIO0
- bool "Use SDIO0"
- config USING_SDIO1
- bool "Use SDIO1"
- config USING_EMMC
- bool "Use EMMC"
- endchoice
- config SDCARD_OFFSET
- hex "Block Offset"
- default 0x0
- help
- Skip access start paration of SD Card to protect BIOS
- endif
- endmenu
- menu "Board extended module Drivers"
- endmenu
- endmenu
|