Kconfig 304 B

123456789101112131415161718
  1. menu "CAN Configuration"
  2. config USE_FCAN
  3. bool
  4. prompt "Use FCAN"
  5. default n
  6. if USE_FCAN
  7. config FCAN_USE_CANFD
  8. depends on TARGET_E2000
  9. bool
  10. prompt "Use CanFD"
  11. default n
  12. help
  13. use canfd protocol
  14. endif
  15. endmenu