summaryrefslogtreecommitdiffstats
path: root/Src/osmocom-bb/src/target/firmware/include/console.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/osmocom-bb/src/target/firmware/include/console.h')
-rw-r--r--Src/osmocom-bb/src/target/firmware/include/console.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/Src/osmocom-bb/src/target/firmware/include/console.h b/Src/osmocom-bb/src/target/firmware/include/console.h
deleted file mode 100644
index 7146e99..0000000
--- a/Src/osmocom-bb/src/target/firmware/include/console.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef _CONSOLE_H
-#define _CONSOLE_H
-
-/* This is the direct (IRQ driven) UART console, bypassing the HDLC layer.
- * You should not need to call those functions unless you've decided to
- * not use the HLDC layer or have a device with two UARTs */
-
-int cons_rb_append(const char *data, int len);
-int cons_puts(const char *s);
-int cons_putchar(char c);
-int cons_rb_flush(void);
-void cons_init(void);
-
-/* We want the console on UART 0 (IRDA UART) */
-#define CONS_UART_NR 0
-
-/* Size of the static ring-buffer that we keep for console print messages */
-#define CONS_RB_SIZE 4096
-
-#endif /* _CONSOLE_H */