Kconfig 975 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. menu "Hardware Drivers Config"
  2. choice
  3. prompt "select chip type"
  4. default SOC_SAME70Q21
  5. config SOC_SAME70Q21
  6. bool "SOC_SAME70Q21"
  7. help
  8. Refer to SAME70 DataSheet
  9. config SOC_SAME70N21
  10. bool "SOC_SAME70N21"
  11. help
  12. Refer to SAME70 DataSheet
  13. config SOC_SAME70J21
  14. bool "SOC_SAME70J21"
  15. help
  16. Refer to SAME70 DataSheet
  17. endchoice
  18. endmenu
  19. menu "Onboard Peripheral Drivers"
  20. config SAME70_CAN0
  21. bool "Enable CAN0"
  22. default false
  23. config SAME70_ADC0
  24. bool "Enable ADC0"
  25. default false
  26. endmenu
  27. menu "Application Demo Config"
  28. config SAM_CAN_EXAMPLE
  29. bool "Enable SAM CAN Example"
  30. depends on SAME70_CAN0
  31. default true
  32. help
  33. Add CAN example task to project
  34. config SAM_ADC_EXAMPLE
  35. bool "Enable SAM ADC Example"
  36. depends on SAME70_ADC0
  37. default true
  38. help
  39. Add ADC example task to project
  40. endmenu