summaryrefslogtreecommitdiff
path: root/avr/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'avr/command.c')
-rw-r--r--avr/command.c17
1 files changed, 6 insertions, 11 deletions
diff --git a/avr/command.c b/avr/command.c
index f1e184a..2b53adf 100644
--- a/avr/command.c
+++ b/avr/command.c
@@ -1,29 +1,24 @@
-
/*
* Command Processor Table
*/
#include "common.h"
-
+#include <stdlib.h>
#include <string.h>
#include <ctype.h>
-#include <stdlib.h>
#include <stdio.h>
+#include <avr/pgmspace.h>
#include "config.h"
-#include "debug.h"
+#include "print-utils.h"
#include "con-utils.h"
+#ifdef CONFIG_AUTO_COMPLETE
#include "env.h"
-#include "timer.h"
+#endif
+#include "debug.h"
#include "command.h"
-static void print_blanks(int_fast8_t count)
-{
- while(count--)
- my_puts_P(PSTR(" "));
-}
-
static void print_usage_line(const FLASH char *name, int width,
const FLASH char *usage)
{