summaryrefslogtreecommitdiffstats
path: root/common/uart.h
diff options
context:
space:
mode:
authortmk <hasu@tmk-kbd.com>2015-04-09 18:25:48 +0200
committertmk <hasu@tmk-kbd.com>2015-04-09 18:25:48 +0200
commit6746e37088ce8ba03529c1226bd216705edb2b1f (patch)
treea256db88ec3e9e8b1b70839fcd9459d972ce26e0 /common/uart.h
parentb4e2d325f355a4d083106476393775e75e11f284 (diff)
downloadqmk_firmware-6746e37088ce8ba03529c1226bd216705edb2b1f.tar.gz
qmk_firmware-6746e37088ce8ba03529c1226bd216705edb2b1f.tar.xz
Remove core library and build files
Diffstat (limited to 'common/uart.h')
-rw-r--r--common/uart.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/common/uart.h b/common/uart.h
deleted file mode 100644
index 41136a396..000000000
--- a/common/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