Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. # CANopenNode CANopen protocol stack configuration options
  2. # Copyright (c) 2019 Vestas Wind Systems A/S
  3. # SPDX-License-Identifier: Apache-2.0
  4. config ZEPHYR_CANOPENNODE_MODULE
  5. bool
  6. config CANOPENNODE
  7. bool "CANopenNode support"
  8. depends on CAN
  9. help
  10. This option enables the CANopenNode library.
  11. if CANOPENNODE
  12. config CANOPENNODE_SDO_BUFFER_SIZE
  13. int "CANopen SDO buffer size"
  14. default 32
  15. range 7 889
  16. help
  17. Size of the internal CANopen SDO buffer in bytes. Size must
  18. be at least equal to the size of the largest variable in the
  19. object dictionary. If data type is DOMAIN, data length is
  20. not limited to the SDO buffer size. If block transfer is
  21. implemented, value should be set to 889.
  22. config CANOPENNODE_TRACE_BUFFER_SIZE
  23. int "CANopen trace buffer size"
  24. default 100
  25. help
  26. Size of the CANopen trace buffer in bytes.
  27. config CANOPENNODE_TX_WORKQUEUE_STACK_SIZE
  28. int "Stack size for the CANopen transmit workqueue"
  29. default 320
  30. help
  31. Size of the stack used for the internal CANopen transmit
  32. workqueue.
  33. config CANOPENNODE_TX_WORKQUEUE_PRIORITY
  34. int "Priority for CANopen transmit workqueue"
  35. default 0 if !COOP_ENABLED
  36. default -1
  37. help
  38. Priority level of the internal CANopen transmit workqueue.
  39. config CANOPENNODE_STORAGE
  40. bool "CANopen object dictionary storage"
  41. depends on SETTINGS
  42. default y
  43. help
  44. Enable support for storing the CANopen object dictionary to
  45. non-volatile storage.
  46. config CANOPENNODE_STORAGE_HANDLER_ERASES_EEPROM
  47. bool "Erase CANopen object dictionary EEPROM entries in storage handler"
  48. depends on CANOPENNODE_STORAGE
  49. help
  50. Erase CANopen object dictionary EEPROM entries upon write to
  51. object dictionary index 0x1011 subindex 1.
  52. config CANOPENNODE_LEDS
  53. bool "CANopen LED indicators"
  54. default y
  55. help
  56. Enable support for CANopen LED indicators according to the CiA
  57. 303-3 specification.
  58. config CANOPENNODE_LEDS_BICOLOR
  59. bool "CANopen bicolor LED indicator"
  60. depends on CANOPENNODE_LEDS
  61. help
  62. Handle CANopen LEDs as one bicolor LED, favoring the red LED
  63. over the green LED in accordance with the CiA 303-3
  64. specification.
  65. config CANOPENNODE_SYNC_THREAD
  66. bool "CANopen SYNC thread"
  67. default y
  68. help
  69. Enable internal thread for processing CANopen SYNC RPDOs and
  70. TPDOs. Application layer must take care of SYNC RPDO and
  71. TPDO processing on its own if this is disabled.
  72. config CANOPENNODE_SYNC_THREAD_STACK_SIZE
  73. int "Stack size for the CANopen SYNC thread"
  74. depends on CANOPENNODE_SYNC_THREAD
  75. default 256
  76. help
  77. Size of the stack used for the internal thread which
  78. processes CANopen SYNC RPDOs and TPDOs.
  79. config CANOPENNODE_SYNC_THREAD_PRIORITY
  80. int "Priority for CANopen SYNC thread"
  81. depends on CANOPENNODE_SYNC_THREAD
  82. default 0 if !COOP_ENABLED
  83. default -5
  84. help
  85. Priority level of the internal thread which processes
  86. CANopen SYNC RPDOs and TPDOs.
  87. config CANOPENNODE_PROGRAM_DOWNLOAD
  88. bool "CANopen program download"
  89. depends on BOOTLOADER_MCUBOOT
  90. select IMG_MANAGER
  91. default y
  92. help
  93. Enable support for program download over CANopen according
  94. to the CiA 302-3 (draft) specification.
  95. endif # CANOPENNODE