Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. config SAME70_I2C0
  27. bool "Enable I2C0"
  28. default false
  29. config SAME70_GMAC
  30. bool "Enable GMAC"
  31. default false
  32. endmenu
  33. menu "Application Demo Config"
  34. config SAM_CAN_EXAMPLE
  35. bool "Enable SAM CAN Example"
  36. depends on SAME70_CAN0
  37. default true
  38. help
  39. Add CAN example task to project
  40. config SAM_ADC_EXAMPLE
  41. bool "Enable SAM ADC Example"
  42. depends on SAME70_ADC0
  43. default true
  44. help
  45. Add ADC example task to project
  46. config SAM_I2C_EXAMPLE
  47. bool "Enable SAM I2C Example"
  48. depends on SAME70_I2C0
  49. default true
  50. help
  51. Add I2C example task to project
  52. config SAM_LWIP_EXAMPLE
  53. bool "Enable SAM LWIP Example"
  54. depends on SAME70_GMAC
  55. default false
  56. help
  57. Add GMAC LWIP example task to project
  58. endmenu