Get int8_t variable from Object Dictionary, see @ref OD_get_value */
| 491 | |
| 492 | /** Get int8_t variable from Object Dictionary, see @ref OD_get_value */ |
| 493 | static inline ODR_t |
| 494 | OD_get_i8(const OD_entry_t* entry, uint8_t subIndex, int8_t* val, bool_t odOrig) { |
| 495 | return OD_get_value(entry, subIndex, val, sizeof(*val), odOrig); |
| 496 | } |
| 497 | |
| 498 | /** Get int16_t variable from Object Dictionary, see @ref OD_get_value */ |
| 499 | static inline ODR_t |
nothing calls this directly
no test coverage detected