Set uint16_t variable in Object Dictionary, see @ref OD_set_value */
| 596 | |
| 597 | /** Set uint16_t variable in Object Dictionary, see @ref OD_set_value */ |
| 598 | static inline ODR_t |
| 599 | OD_set_u16(const OD_entry_t* entry, uint8_t subIndex, uint16_t val, bool_t odOrig) { |
| 600 | return OD_set_value(entry, subIndex, &val, sizeof(val), odOrig); |
| 601 | } |
| 602 | |
| 603 | /** Set uint32_t variable in Object Dictionary, see @ref OD_set_value */ |
| 604 | static inline ODR_t |
nothing calls this directly
no test coverage detected