diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-06-16 13:57:11 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-06-29 13:33:58 -0400 |
commit | 44f2a2a9521ee295acbe44cf0d2a5dedd179fd37 (patch) | |
tree | 6bbfa1dba60ab005667c8334cc8cfdf6fab90bea /src/avr/serial.c | |
parent | 292453d3060abf81e13aeb7bc7d76d3c3709da79 (diff) | |
download | kutter-44f2a2a9521ee295acbe44cf0d2a5dedd179fd37.tar.gz kutter-44f2a2a9521ee295acbe44cf0d2a5dedd179fd37.tar.xz kutter-44f2a2a9521ee295acbe44cf0d2a5dedd179fd37.zip |
command: Move low-level sendf transmission into board code
Export a new console_sendf() function from the board code instead of
console_get_output() and console_push_output(). This enables more
flexibility in how the board specific code produces output.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/avr/serial.c')
-rw-r--r-- | src/avr/serial.c | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/src/avr/serial.c b/src/avr/serial.c index 213b10ed..87067c7a 100644 --- a/src/avr/serial.c +++ b/src/avr/serial.c @@ -10,8 +10,9 @@ #include "board/io.h" // readb #include "board/misc.h" // console_get_input #include "command.h" // DECL_CONSTANT -#include "sched.h" // DECL_INIT #include "irq.h" // irq_save +#include "pgm.h" // READP +#include "sched.h" // DECL_INIT static char receive_buf[192]; static uint8_t receive_pos; @@ -139,7 +140,7 @@ console_task(void) DECL_TASK(console_task); // Return an output buffer that the caller may fill with transmit messages -char * +static char * console_get_output(uint8_t len) { uint8_t tpos = readb(&transmit_pos), tmax = readb(&transmit_max); @@ -164,9 +165,22 @@ console_get_output(uint8_t len) } // Accept the given number of bytes added to the transmit buffer -void +static void console_push_output(uint8_t len) { writeb(&transmit_max, readb(&transmit_max) + len); enable_tx_irq(); } + +// Encode and transmit a "response" message +void +console_sendf(const struct command_encoder *ce, va_list args) +{ + uint8_t buf_len = READP(ce->max_size); + char *buf = console_get_output(buf_len); + if (!buf) + return; + uint8_t msglen = command_encodef(buf, buf_len, ce, args); + command_add_frame(buf, msglen); + console_push_output(msglen); +} |