Set float64_t variable in Object Dictionary, see @ref OD_set_value */
| 620 | |
| 621 | /** Set float64_t variable in Object Dictionary, see @ref OD_set_value */ |
| 622 | static inline ODR_t |
| 623 | OD_set_f64(const OD_entry_t* entry, uint8_t subIndex, float64_t val, bool_t odOrig) { |
| 624 | return OD_set_value(entry, subIndex, &val, sizeof(val), odOrig); |
| 625 | } |
| 626 | |
| 627 | /** |
| 628 | * Get pointer to memory which holds data variable from Object Dictionary |
nothing calls this directly
no test coverage detected