Set uint64_t variable in Object Dictionary, see @ref OD_set_value */
| 608 | |
| 609 | /** Set uint64_t variable in Object Dictionary, see @ref OD_set_value */ |
| 610 | static inline ODR_t |
| 611 | OD_set_u64(const OD_entry_t* entry, uint8_t subIndex, uint64_t val, bool_t odOrig) { |
| 612 | return OD_set_value(entry, subIndex, &val, sizeof(val), odOrig); |
| 613 | } |
| 614 | |
| 615 | /** Set float32_t variable in Object Dictionary, see @ref OD_set_value */ |
| 616 | static inline ODR_t |
nothing calls this directly
no test coverage detected