diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-06-15 15:06:10 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-06-29 13:33:58 -0400 |
commit | 292453d3060abf81e13aeb7bc7d76d3c3709da79 (patch) | |
tree | 2cec3840a26418b5d84efde4ef8230e44c18c6ac /src/generic/misc.h | |
parent | 1ae78d08e9a7d356c4b8555799ee42c9244c1b7d (diff) | |
download | kutter-292453d3060abf81e13aeb7bc7d76d3c3709da79.tar.gz kutter-292453d3060abf81e13aeb7bc7d76d3c3709da79.tar.xz kutter-292453d3060abf81e13aeb7bc7d76d3c3709da79.zip |
command: Move command_task() to board specific code
Move the command_task() code from the generic code to the board
specific code. This enables more flexibility in how the board
specific code processes input.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/generic/misc.h')
-rw-r--r-- | src/generic/misc.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/generic/misc.h b/src/generic/misc.h index 4408a34a..9847e9a9 100644 --- a/src/generic/misc.h +++ b/src/generic/misc.h @@ -4,8 +4,6 @@ #include <stddef.h> // size_t #include <stdint.h> // uint8_t -char *console_get_input(uint8_t *plen); -void console_pop_input(uint8_t len); char *console_get_output(uint8_t len); void console_push_output(uint8_t len); |