aboutsummaryrefslogtreecommitdiffstats
path: root/src/simulator/main.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2017-06-15 15:06:10 -0400
committerKevin O'Connor <kevin@koconnor.net>2017-06-29 13:33:58 -0400
commit292453d3060abf81e13aeb7bc7d76d3c3709da79 (patch)
tree2cec3840a26418b5d84efde4ef8230e44c18c6ac /src/simulator/main.c
parent1ae78d08e9a7d356c4b8555799ee42c9244c1b7d (diff)
downloadkutter-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/simulator/main.c')
-rw-r--r--src/simulator/main.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/simulator/main.c b/src/simulator/main.c
index 47dd49f4..bdad1a6a 100644
--- a/src/simulator/main.c
+++ b/src/simulator/main.c
@@ -85,19 +85,6 @@ timer_read_time(void)
* Turn stdin/stdout into serial console
****************************************************************/
-// XXX
-char *
-console_get_input(uint8_t *plen)
-{
- *plen = 0;
- return NULL;
-}
-
-void
-console_pop_input(uint8_t len)
-{
-}
-
// Return an output buffer that the caller may fill with transmit messages
char *
console_get_output(uint8_t len)