Get int32_t variable from Object Dictionary, see @ref OD_get_value */
| 503 | |
| 504 | /** Get int32_t variable from Object Dictionary, see @ref OD_get_value */ |
| 505 | static inline ODR_t |
| 506 | OD_get_i32(const OD_entry_t* entry, uint8_t subIndex, int32_t* val, bool_t odOrig) { |
| 507 | return OD_get_value(entry, subIndex, val, sizeof(*val), odOrig); |
| 508 | } |
| 509 | |
| 510 | /** Get int64_t variable from Object Dictionary, see @ref OD_get_value */ |
| 511 | static inline ODR_t |
nothing calls this directly
no test coverage detected