diff options
author | Ryan <fauxpark@gmail.com> | 2021-02-06 09:20:48 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-06 09:20:48 +1100 |
commit | 5ea92a9c1cbe3e20bf4830d550d797a8e9650da8 (patch) | |
tree | 75ea1413ae4fa23bd0b1230629b6a3b3e215c5eb /keyboards/telophase/telophase.c | |
parent | 464eb7137d27e3a31e85032c85c9fda627a8b33f (diff) | |
download | qmk_firmware-5ea92a9c1cbe3e20bf4830d550d797a8e9650da8.tar.gz qmk_firmware-5ea92a9c1cbe3e20bf4830d550d797a8e9650da8.zip |
Serial refactor (#11521)
Diffstat (limited to 'keyboards/telophase/telophase.c')
-rw-r--r-- | keyboards/telophase/telophase.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/keyboards/telophase/telophase.c b/keyboards/telophase/telophase.c index c77a43389f..0e04debeb8 100644 --- a/keyboards/telophase/telophase.c +++ b/keyboards/telophase/telophase.c @@ -1,9 +1,5 @@ #include "telophase.h" -void uart_init(void) { - SERIAL_UART_INIT(); -} - void led_init(void) { DDRD |= (1<<1); PORTD |= (1<<1); @@ -16,20 +12,9 @@ void matrix_init_kb(void) { // put your keyboard start-up code here // runs once when the firmware starts up matrix_init_user(); - uart_init(); led_init(); } -void matrix_scan_kb(void) { - // put your looping keyboard code here - // runs every cycle (a lot) - matrix_scan_user(); -} - -void led_set_kb(uint8_t usb_led) { - -} - #ifdef SWAP_HANDS_ENABLE __attribute__ ((weak)) const keypos_t hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = { |