12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- menu "Hardware Drivers Config"
- config SOC_MAX32660
- bool
- config SOC_MAX32660
- select RT_USING_COMPONENTS_INIT
- select RT_USING_USER_MAIN
- select BSP_USING_UART
- select BSP_USING_UART1
- default y
- config SOC_MAXIM
- bool
- config SOC_MAXIM
- default y
- menu "On-chip Peripheral Drivers"
- config BSP_USING_GPIO
- bool "Enable GPIO"
- select RT_USING_PIN
- default y
- menuconfig BSP_USING_UART
- bool "Enable UART"
- default y
- select RT_USING_SERIAL
- if BSP_USING_UART
- config BSP_USING_UART0
- bool "Enable UART0"
- default n
- config BSP_UART0_RX_USING_DMA
- bool "Enable UART0 RX DMA"
- depends on BSP_USING_UART0 && RT_SERIAL_USING_DMA
- default n
- config BSP_USING_UART1
- bool "Enable UART1"
- default y
- config BSP_UART1_RX_USING_DMA
- bool "Enable UART1 RX DMA"
- depends on BSP_USING_UART1 && RT_SERIAL_USING_DMA
- default n
- endif
- config BSP_USING_SPI
- bool "Enable SPI"
- select RT_USING_SPI
- default n
- if BSP_USING_SPI
- config BSP_USING_SPI0
- bool "Enable SPI0 bus [MISO P0.4;MOSI P0.5;SCL P0.6;SS P0.7]"
- default y
- config BSP_USING_SPI1
- bool "Enable SPI1 bus [MISO P0.0;MOSI P0.1;SCL P0.2;SS P0.3]"
- default n
- if BSP_USING_SPI1
- config BSP_USING_SPI1A
- bool "Use SPI1A. [MISO P0.10;MOSI P0.11;SCL P0.12;SS P0.13]"
- default n
- endif
- endif
- config BSP_USING_ON_CHIP_FLASH
- select RT_USING_FAL
- bool "Enable on-chip FLASH"
- default n
- config BSP_USING_I2C
- bool "Enable I2C"
- select RT_USING_I2C
- default n
- if BSP_USING_I2C
- config BSP_USING_I2C0
- bool "Enable I2C0 bus [SCL P0.8; SDA P0.9]"
- default y
- config BSP_USING_I2C1
- bool "Enable I2C1 bus [SCL P0.2; SDA P0.3]"
- default n
- endif
- config BSP_USING_ONCHIP_RTC
- bool "Enable RTC"
- select RT_USING_RTC
- default n
- endmenu
- endmenu
|