summaryrefslogtreecommitdiffstats
path: root/uart.h
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2012-06-06 19:25:15 +0200
committertmk <nobody@nowhere>2012-06-06 19:47:33 +0200
commitf4125707399d11a7d80587659c464b9bcddb8c56 (patch)
tree1d2a02e30f8cd103e8f4dc36629c09f6a3d44fef /uart.h
parent225de7a847a511d004bf909b1334e19497cf2f9d (diff)
downloadqmk_firmware-f4125707399d11a7d80587659c464b9bcddb8c56.tar.gz
qmk_firmware-f4125707399d11a7d80587659c464b9bcddb8c56.tar.xz
Moved files to common, protocol and doc directory
Diffstat (limited to 'uart.h')
-rw-r--r--uart.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/uart.h b/uart.h
deleted file mode 100644
index 41136a396..000000000
--- a/uart.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifndef _uart_included_h_
-#define _uart_included_h_
-
-#include <stdint.h>
-
-void uart_init(uint32_t baud);
-void uart_putchar(uint8_t c);
-uint8_t uart_getchar(void);
-uint8_t uart_available(void);
-
-#endif