summaryrefslogtreecommitdiff
path: root/keyboards/dichotomy/dichotomy.c
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-02-06 09:20:48 +1100
committerGitHub <noreply@github.com>2021-02-06 09:20:48 +1100
commit5ea92a9c1cbe3e20bf4830d550d797a8e9650da8 (patch)
tree75ea1413ae4fa23bd0b1230629b6a3b3e215c5eb /keyboards/dichotomy/dichotomy.c
parent464eb7137d27e3a31e85032c85c9fda627a8b33f (diff)
Serial refactor (#11521)
Diffstat (limited to 'keyboards/dichotomy/dichotomy.c')
-rwxr-xr-xkeyboards/dichotomy/dichotomy.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/keyboards/dichotomy/dichotomy.c b/keyboards/dichotomy/dichotomy.c
index b94030a376..967d7e603c 100755
--- a/keyboards/dichotomy/dichotomy.c
+++ b/keyboards/dichotomy/dichotomy.c
@@ -1,12 +1,7 @@
#include "dichotomy.h"
-void uart_init(void) {
- SERIAL_UART_INIT();
-}
-
void pointing_device_task(void){
/*report_mouse_t currentReport = {};
- SERIAL_UART_INIT();
uint32_t timeout = 0;
//the m character requests the RF slave to send the mouse report
@@ -77,16 +72,5 @@ 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) {
-
-}