Get uint8_t variable from Object Dictionary, see @ref OD_get_value */
| 515 | |
| 516 | /** Get uint8_t variable from Object Dictionary, see @ref OD_get_value */ |
| 517 | static inline ODR_t |
| 518 | OD_get_u8(const OD_entry_t* entry, uint8_t subIndex, uint8_t* val, bool_t odOrig) { |
| 519 | return OD_get_value(entry, subIndex, val, sizeof(*val), odOrig); |
| 520 | } |
| 521 | |
| 522 | /** Get uint16_t variable from Object Dictionary, see @ref OD_get_value */ |
| 523 | static inline ODR_t |
no test coverage detected