用于EagleEye3.0 规则集漏报和误报测试的示例项目,项目收集于github和gitee
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.3 KiB

10 months ago
menu "Hardware Drivers Config"
choice
prompt "select chip type"
default SOC_SAML10E16
config SOC_SAML10E16
bool "SOC_SAML10E16"
help
Refer to SAML10 DataSheet
config SOC_SAML10E15
bool "SOC_SAML10E15"
help
Refer to SAML10 DataSheet
config SOC_SAML10E14
bool "SOC_SAML10E14"
help
Refer to SAML10 DataSheet
config SOC_SAML10D16
bool "SOC_SAML10D16"
help
Refer to SAML10 DataSheet
config SOC_SAML10D15
bool "SOC_SAML10D15"
help
Refer to SAML10 DataSheet
config SOC_SAML10D14
bool "SOC_SAML10D14"
help
Refer to SAML10 DataSheet
endchoice
endmenu
menu "Onboard Peripheral Drivers"
depends on SOC_SAML10E16
config SAML10_ADC0
bool "Enable ADC0"
default false
config SAML10_I2C0
bool "Enable I2C0"
default false
endmenu
menu "Application Demo Config"
config SAM_ADC_EXAMPLE
bool "Enable SAM ADC Example"
depends on SAML10_ADC0
default true
help
Add ADC example task to project
config SAM_I2C_EXAMPLE
bool "Enable SAM I2C Example"
depends on SAML10_I2C0
default true
help
Add I2C example task to project
endmenu