8af8decb62
* Add Microchip SAM series MCU support for RT-Thread Add Microchip SAM series MCU support for RT-Thread, including SAM Cortex-M0+, M4F and M7. * Add bsp directory to ignored check list Add bsp directory to ignored check list, add microchip /samc21/same54/same70 to workflows list * remove STDIO definition and bug fix 1. remove STDIO code from Microchip official BSP. 2. bug fix of SAME70 hpl/hpl_usart.c, samc21&same54 hpl/hpl_sercom.c baudrate update interface. 3. Add RT-Thread standard STDIO implementation on Microchip SAM MCU. * add CAN driver & example and script fix Add CAN driver and example for SAMC21/SAME5x/SAME70 and fix rtconfig.py issue(unused space might result link error) * Add Chinese version README Add Chinese version README for SAMC21/E54/E70
53 lines
1022 B
Plaintext
53 lines
1022 B
Plaintext
menu "Hardware Drivers Config"
|
|
|
|
choice
|
|
prompt "select chip type"
|
|
default SOC_SAME54P20
|
|
|
|
config SOC_SAME54P20
|
|
bool "SOC_SAME54P20"
|
|
help
|
|
Refer to SAME54 DataSheet
|
|
|
|
config SOC_SAME54N20
|
|
bool "SOC_SAME54N20"
|
|
help
|
|
Refer to SAME54 DataSheet
|
|
|
|
config SOC_SAME53J20
|
|
bool "SOC_SAME53J20"
|
|
help
|
|
Refer to SAME54 DataSheet
|
|
|
|
endchoice
|
|
endmenu
|
|
|
|
menu "Onboard Peripheral Drivers"
|
|
depends on SOC_SAME54P20 || SOC_SAME54N20
|
|
|
|
config SAME5X_CAN0
|
|
bool "Enable CAN0"
|
|
default false
|
|
|
|
config SAME5X_ADC0
|
|
bool "Enable ADC0"
|
|
default false
|
|
endmenu
|
|
|
|
menu "Application Demo Config"
|
|
config SAM_CAN_EXAMPLE
|
|
bool "Enable SAM CAN Example"
|
|
depends on SAME5X_CAN0
|
|
default true
|
|
help
|
|
Add CAN example task to project
|
|
|
|
config SAM_ADC_EXAMPLE
|
|
bool "Enable SAM ADC Example"
|
|
depends on SAME5X_ADC0
|
|
default true
|
|
help
|
|
Add ADC example task to project
|
|
|
|
endmenu
|