summaryrefslogtreecommitdiff
path: root/firmware/drivers/cli.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/cli.h')
-rw-r--r--firmware/drivers/cli.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/firmware/drivers/cli.h b/firmware/drivers/cli.h
index ecc373b..2605715 100644
--- a/firmware/drivers/cli.h
+++ b/firmware/drivers/cli.h
@@ -28,6 +28,12 @@
#define __PEDAL2METAL_CLI_H__
void cli_init();
-int cli_write(const char *fmt, ...);
+
+void cli_write(const char *buffer, unsigned int size);
+int cli_read(char *buffer, unsigned int size);
+
+int cli_printf(const char *fmt, ...);
+
+int cli_readline(char *buf, unsigned int maxsize);
#endif/*__PEDAL2METAL_CLI_H__*/