Kconfig 755 B

12345678910111213141516171819202122232425262728293031
  1. config RT_USING_CAN
  2. bool "Using CAN device drivers"
  3. default n
  4. if RT_USING_CAN
  5. config RT_CAN_USING_HDR
  6. bool "Enable CAN hardware filter"
  7. default n
  8. config RT_CAN_USING_CANFD
  9. bool "Enable CANFD support"
  10. default n
  11. config RT_CANMSG_BOX_SZ
  12. int "CAN message box size"
  13. default 16
  14. help
  15. Set the size of the CAN message box.
  16. config RT_CANSND_BOX_NUM
  17. int "Number of CAN send queues"
  18. default 1
  19. help
  20. Set the number of CAN send queues.
  21. config RT_CANSND_MSG_TIMEOUT
  22. int "CAN send message timeout"
  23. default 100
  24. help
  25. Set the timeout for CAN send messages.
  26. endif