summaryrefslogtreecommitdiffstats
path: root/apps/osmocomBB/osmocomBB/include/console.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/osmocomBB/osmocomBB/include/console.h')
-rw-r--r--apps/osmocomBB/osmocomBB/include/console.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/apps/osmocomBB/osmocomBB/include/console.h b/apps/osmocomBB/osmocomBB/include/console.h
new file mode 100644
index 0000000000..cd27155e33
--- /dev/null
+++ b/apps/osmocomBB/osmocomBB/include/console.h
@@ -0,0 +1,19 @@
+#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);
+void cons_bind_uart(int uart);
+int cons_get_uart(void);
+
+/* Size of the static ring-buffer that we keep for console print messages */
+#define CONS_RB_SIZE 4096
+
+#endif /* _CONSOLE_H */