diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-02-17 22:29:38 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-06-09 18:58:35 -0400 |
commit | f938caa0d23f91c6fbf416334441e64e6739bbc7 (patch) | |
tree | 849bb2d821660c68d93c8ca6612b7476d0f71092 /klippy/chelper/msgblock.h | |
parent | 1865080a0759b318a6bd9141aa7695de943736d5 (diff) | |
download | kutter-f938caa0d23f91c6fbf416334441e64e6739bbc7.tar.gz kutter-f938caa0d23f91c6fbf416334441e64e6739bbc7.tar.xz kutter-f938caa0d23f91c6fbf416334441e64e6739bbc7.zip |
msgblock: Add msgblock_decode()
Add function that can parse a simple VLQ encoded message to an array
of integers.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/chelper/msgblock.h')
-rw-r--r-- | klippy/chelper/msgblock.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/chelper/msgblock.h b/klippy/chelper/msgblock.h index cce1b2ee..2d2967eb 100644 --- a/klippy/chelper/msgblock.h +++ b/klippy/chelper/msgblock.h @@ -36,6 +36,7 @@ struct queue_message { uint16_t msgblock_crc16_ccitt(uint8_t *buf, uint8_t len); int msgblock_check(uint8_t *need_sync, uint8_t *buf, int buf_len); +int msgblock_decode(uint32_t *data, int data_len, uint8_t *msg, int msg_len); struct queue_message *message_alloc(void); struct queue_message *message_fill(uint8_t *data, int len); struct queue_message *message_alloc_and_encode(uint32_t *data, int len); |