canopennode.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /*
  2. * Copyright (c) 2019 Vestas Wind Systems A/S
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @defgroup CAN CAN BUS
  8. * @{
  9. * @}
  10. */
  11. /**
  12. * @brief CANopen Network Stack
  13. * @defgroup canopen CANopen Network Stack
  14. * @ingroup CAN
  15. * @{
  16. */
  17. #ifndef ZEPHYR_MODULES_CANOPENNODE_CANOPENNODE_H_
  18. #define ZEPHYR_MODULES_CANOPENNODE_CANOPENNODE_H_
  19. #include <CANopen.h>
  20. #include <CO_Emergency.h>
  21. #include <CO_SDO.h>
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /**
  26. * @brief CANopen object dictionary storage types.
  27. */
  28. enum canopen_storage {
  29. CANOPEN_STORAGE_RAM,
  30. CANOPEN_STORAGE_ROM,
  31. CANOPEN_STORAGE_EEPROM,
  32. };
  33. struct canopen_context {
  34. const struct device *dev;
  35. };
  36. /**
  37. * @brief Attach CANopen object dictionary storage handlers.
  38. *
  39. * Attach CANopen storage handler functions to object dictionary
  40. * indexes 0x1010 (Store parameters) and 0x1011 (Restore default
  41. * parameters). This function must be called after calling CANopenNode
  42. * `CO_init()`.
  43. *
  44. * The handlers will save object dictionary entries of type @ref
  45. * CANOPEN_STORAGE_ROM to non-volatile storage when a CANopen SDO
  46. * client writes 0x65766173 ('s', 'a', 'v', 'e' from LSB to MSB) to
  47. * object dictionary index 0x1010 sub-index 1.
  48. *
  49. * Object dictionary entries of types @ref CANOPEN_STORAGE_ROM (and
  50. * optionally @ref CANOPEN_STORAGE_EEPROM) will be deleted from
  51. * non-volatile storage when a CANopen SDO client writes 0x64616F6C
  52. * ('l', 'o', 'a', 'd' from LSB to MSB) to object dictionary index
  53. * 0x1011 sub-index 1.
  54. *
  55. * Object dictionary entries of type @ref CANOPEN_STORAGE_EEPROM may be
  56. * saved by the application by periodically calling @ref
  57. * canopen_storage_save().
  58. *
  59. * Object dictionary entries of type @ref CANOPEN_STORAGE_RAM are
  60. * never saved to non-volatile storage.
  61. *
  62. * @param sdo CANopenNode SDO server object
  63. * @param em CANopenNode Emergency object
  64. */
  65. void canopen_storage_attach(CO_SDO_t *sdo, CO_EM_t *em);
  66. /**
  67. * @brief Save CANopen object dictionary entries to non-volatile storage.
  68. *
  69. * Save object dictionary entries of a given type to non-volatile
  70. * storage.
  71. *
  72. * @param storage CANopen object dictionary entry type
  73. *
  74. * @return 0 if successful, negative errno code if failure
  75. */
  76. int canopen_storage_save(enum canopen_storage storage);
  77. /**
  78. * @brief Erase CANopen object dictionary entries from non-volatile storage.
  79. *
  80. * Erase object dictionary entries of a given type from non-volatile
  81. * storage.
  82. *
  83. * @param storage CANopen object dictionary entry type
  84. *
  85. * @return 0 if successful, negative errno code if failure
  86. */
  87. int canopen_storage_erase(enum canopen_storage storage);
  88. /**
  89. * @brief Attach CANopen object dictionary program download handlers.
  90. *
  91. * Attach CANopen program download functions to object dictionary
  92. * indexes 0x1F50, 0x1F51, 0x1F56, and 0x1F57. This function must be
  93. * called after calling CANopenNode `CO_init()`.
  94. *
  95. * @param nmt CANopenNode NMT object
  96. * @param sdo CANopenNode SDO server object
  97. * @param em CANopenNode Emergency object
  98. */
  99. void canopen_program_download_attach(CO_NMT_t *nmt, CO_SDO_t *sdo, CO_EM_t *em);
  100. /**
  101. * @typedef canopen_led_callback_t
  102. * @brief CANopen LED indicator callback function signature.
  103. *
  104. * @param value true if the LED indicator shall be turned on, false otherwise.
  105. * @param arg argument that was passed when LEDs were initialized.
  106. */
  107. typedef void (*canopen_led_callback_t)(bool value, void *arg);
  108. /**
  109. * @brief Initialize CANopen LED indicators.
  110. *
  111. * Initialize CANopen LED indicators and attach callbacks for setting
  112. * their state. Two LED indicators, a red and a green, are supported
  113. * according to CiA 303-3.
  114. *
  115. * @param nmt CANopenNode NMT object.
  116. * @param green_cb callback for changing state on the green LED indicator.
  117. * @param green_arg argument to pass to the green LED indicator callback.
  118. * @param red_cb callback for changing state on the red LED indicator.
  119. * @param red_arg argument to pass to the red LED indicator callback.
  120. */
  121. void canopen_leds_init(CO_NMT_t *nmt,
  122. canopen_led_callback_t green_cb, void *green_arg,
  123. canopen_led_callback_t red_cb, void *red_arg);
  124. /**
  125. * @brief Indicate CANopen program download in progress
  126. *
  127. * Indicate that a CANopen program download is in progress.
  128. *
  129. * @param in_progress true if program download is in progress, false otherwise
  130. */
  131. void canopen_leds_program_download(bool in_progress);
  132. #ifdef __cplusplus
  133. }
  134. #endif
  135. /**
  136. * @}
  137. */
  138. #endif /* ZEPHYR_MODULES_CANOPENNODE_CANOPENNODE_H_ */