Get float32_t variable from Object Dictionary, see @ref OD_get_value */
| 539 | |
| 540 | /** Get float32_t variable from Object Dictionary, see @ref OD_get_value */ |
| 541 | static inline ODR_t |
| 542 | OD_get_f32(const OD_entry_t* entry, uint8_t subIndex, float32_t* val, bool_t odOrig) { |
| 543 | return OD_get_value(entry, subIndex, val, sizeof(*val), odOrig); |
| 544 | } |
| 545 | |
| 546 | /** Get float64_t variable from Object Dictionary, see @ref OD_get_value */ |
| 547 | static inline ODR_t |
nothing calls this directly
no test coverage detected