Write uint32_t value into memory buffer, see @ref CO_setUint8 */
| 643 | |
| 644 | /** Write uint32_t value into memory buffer, see @ref CO_setUint8 */ |
| 645 | static inline uint8_t |
| 646 | CO_setUint32(void* buf, uint32_t value) { |
| 647 | (void)memmove(buf, (const void*)&value, sizeof(value)); |
| 648 | return (uint8_t)(sizeof(value)); |
| 649 | } |
| 650 | |
| 651 | /** @} */ /* CO_driver */ |
| 652 |
no outgoing calls
no test coverage detected