Set int16_t variable in Object Dictionary, see @ref OD_set_value */
| 572 | |
| 573 | /** Set int16_t variable in Object Dictionary, see @ref OD_set_value */ |
| 574 | static inline ODR_t |
| 575 | OD_set_i16(const OD_entry_t* entry, uint8_t subIndex, int16_t val, bool_t odOrig) { |
| 576 | return OD_set_value(entry, subIndex, &val, sizeof(val), odOrig); |
| 577 | } |
| 578 | |
| 579 | /** Set int32_t variable in Object Dictionary, see @ref OD_set_value */ |
| 580 | static inline ODR_t |
nothing calls this directly
no test coverage detected