| 16 | static uint8_t next_sequence = MESSAGE_DEST; |
| 17 | |
| 18 | static uint32_t |
| 19 | command_encode_ptr(void *p) |
| 20 | { |
| 21 | if (sizeof(size_t) > sizeof(uint32_t)) |
| 22 | return p - console_receive_buffer(); |
| 23 | return (size_t)p; |
| 24 | } |
| 25 | |
| 26 | void * |
| 27 | command_decode_ptr(uint32_t v) |
no test coverage detected