diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-05-24 13:07:43 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-05-28 10:43:39 -0400 |
commit | c8af3feee6b35e33ab989ca8af0b48d738d4aedf (patch) | |
tree | 1a50e691bfe80403f38b7cec5c45f8171c7e8ae5 /src/command.c | |
parent | cb4e165071ad56c4cf881f5221f02eeefde5de53 (diff) | |
download | kutter-c8af3feee6b35e33ab989ca8af0b48d738d4aedf.tar.gz kutter-c8af3feee6b35e33ab989ca8af0b48d738d4aedf.tar.xz kutter-c8af3feee6b35e33ab989ca8af0b48d738d4aedf.zip |
command: Add a command_encode_and_frame() helper
Add a helper function that calls command_encodef() followed by
command_add_frame().
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/command.c')
-rw-r--r-- | src/command.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/command.c b/src/command.c index 6161a031..965f91ed 100644 --- a/src/command.c +++ b/src/command.c @@ -167,6 +167,16 @@ command_add_frame(uint8_t *buf, uint_fast8_t msglen) buf[msglen - MESSAGE_TRAILER_SYNC] = MESSAGE_SYNC; } +// Encode a message and then add a message block frame around it +uint_fast8_t +command_encode_and_frame(uint8_t *buf, const struct command_encoder *ce + , va_list args) +{ + uint_fast8_t msglen = command_encodef(buf, ce, args); + command_add_frame(buf, msglen); + return msglen; +} + static uint8_t in_sendf; // Encode and transmit a "response" message |