1menu "Hardware Drivers Config" 2 3 menu "On-chip Peripheral Drivers" 4 5 config BSP_USING_EMAC 6 bool "EMAC driver" 7 select RT_USING_LWIP 8 default n 9 10 config BSP_USING_HWTIMER0 11 bool "Using timer0" 12 select RT_USING_HWTIMER 13 default n 14 15 config BSP_USING_ADC 16 bool "Using ADC" 17 select RT_USING_ADC 18 default n 19 20 menu "UART Drivers" 21 config BSP_USING_UART0 22 bool "Enable UART0 P0.2/P0.3(T/R)" 23 select RT_USING_SERIAL 24 default y 25 26 config BSP_USING_UART2 27 bool "Enable UART2 P2.8/P0.11(T/R)" 28 select RT_USING_SERIAL 29 default n 30 31 endmenu 32 33 endmenu 34 35 menu "Onboard Peripheral Drivers" 36 37 config BSP_USING_SDRAM 38 bool "Enable sdram" 39 default n 40 41 config BSP_USING_LED 42 bool "Enable LED" 43 default n 44 endmenu 45 46 menu "Offboard Peripheral Drivers" 47 48 endmenu 49 50endmenu 51