Set int8_t variable in Object Dictionary, see @ref OD_set_value */
| 566 | |
| 567 | /** Set int8_t variable in Object Dictionary, see @ref OD_set_value */ |
| 568 | static inline ODR_t |
| 569 | OD_set_i8(const OD_entry_t* entry, uint8_t subIndex, int8_t val, bool_t odOrig) { |
| 570 | return OD_set_value(entry, subIndex, &val, sizeof(val), odOrig); |
| 571 | } |
| 572 | |
| 573 | /** Set int16_t variable in Object Dictionary, see @ref OD_set_value */ |
| 574 | static inline ODR_t |
nothing calls this directly
no test coverage detected