aboutsummaryrefslogtreecommitdiff
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)
downloadqmk_firmware-5ea92a9c1cbe3e20bf4830d550d797a8e9650da8.tar.gz
qmk_firmware-5ea92a9c1cbe3e20bf4830d550d797a8e9650da8.zip
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 b94030a37..967d7e603 100755
--- a/keyboards/dichotomy/dichotomy.c
+++ b/keyboards/dichotomy/dichotomy.c
@@ -1,12 +1,7 @@
1#include "dichotomy.h" 1#include "dichotomy.h"
2 2
3void uart_init(void) {
4 SERIAL_UART_INIT();
5}
6
7void pointing_device_task(void){ 3void pointing_device_task(void){
8 /*report_mouse_t currentReport = {}; 4 /*report_mouse_t currentReport = {};
9 SERIAL_UART_INIT();
10 uint32_t timeout = 0; 5 uint32_t timeout = 0;
11 6
12 //the m character requests the RF slave to send the mouse report 7 //the m character requests the RF slave to send the mouse report
@@ -77,16 +72,5 @@ void matrix_init_kb(void) {
77 // put your keyboard start-up code here 72 // put your keyboard start-up code here
78 // runs once when the firmware starts up 73 // runs once when the firmware starts up
79 matrix_init_user(); 74 matrix_init_user();
80 uart_init();
81 led_init(); 75 led_init();
82} 76}
83
84void matrix_scan_kb(void) {
85 // put your looping keyboard code here
86 // runs every cycle (a lot)
87 matrix_scan_user();
88}
89
90void led_set_kb(uint8_t usb_led) {
91
92}