Get int64_t variable from Object Dictionary, see @ref OD_get_value */
| 509 | |
| 510 | /** Get int64_t variable from Object Dictionary, see @ref OD_get_value */ |
| 511 | static inline ODR_t |
| 512 | OD_get_i64(const OD_entry_t* entry, uint8_t subIndex, int64_t* val, bool_t odOrig) { |
| 513 | return OD_get_value(entry, subIndex, val, sizeof(*val), odOrig); |
| 514 | } |
| 515 | |
| 516 | /** Get uint8_t variable from Object Dictionary, see @ref OD_get_value */ |
| 517 | static inline ODR_t |
nothing calls this directly
no test coverage detected