Set uint32_t variable in Object Dictionary, see @ref OD_set_value */
| 602 | |
| 603 | /** Set uint32_t variable in Object Dictionary, see @ref OD_set_value */ |
| 604 | static inline ODR_t |
| 605 | OD_set_u32(const OD_entry_t* entry, uint8_t subIndex, uint32_t val, bool_t odOrig) { |
| 606 | return OD_set_value(entry, subIndex, &val, sizeof(val), odOrig); |
| 607 | } |
| 608 | |
| 609 | /** Set uint64_t variable in Object Dictionary, see @ref OD_set_value */ |
| 610 | static inline ODR_t |
no test coverage detected