Get int16_t variable from Object Dictionary, see @ref OD_get_value */
| 497 | |
| 498 | /** Get int16_t variable from Object Dictionary, see @ref OD_get_value */ |
| 499 | static inline ODR_t |
| 500 | OD_get_i16(const OD_entry_t* entry, uint8_t subIndex, int16_t* val, bool_t odOrig) { |
| 501 | return OD_get_value(entry, subIndex, val, sizeof(*val), odOrig); |
| 502 | } |
| 503 | |
| 504 | /** Get int32_t variable from Object Dictionary, see @ref OD_get_value */ |
| 505 | static inline ODR_t |
nothing calls this directly
no test coverage detected