diff options
Diffstat (limited to 'keyboards/honeycomb/honeycomb.c')
-rwxr-xr-x | keyboards/honeycomb/honeycomb.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/keyboards/honeycomb/honeycomb.c b/keyboards/honeycomb/honeycomb.c index add4af153..1254196d3 100755 --- a/keyboards/honeycomb/honeycomb.c +++ b/keyboards/honeycomb/honeycomb.c | |||
@@ -2,13 +2,8 @@ | |||
2 | #include "pointing_device.h" | 2 | #include "pointing_device.h" |
3 | #include "report.h" | 3 | #include "report.h" |
4 | 4 | ||
5 | void uart_init(void) { | ||
6 | SERIAL_UART_INIT(); | ||
7 | } | ||
8 | |||
9 | void pointing_device_task(void){ | 5 | void pointing_device_task(void){ |
10 | /*report_mouse_t currentReport = {}; | 6 | /*report_mouse_t currentReport = {}; |
11 | SERIAL_UART_INIT(); | ||
12 | uint32_t timeout = 0; | 7 | uint32_t timeout = 0; |
13 | 8 | ||
14 | //the m character requests the RF slave to send the mouse report | 9 | //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 | |||
84 | void matrix_scan_kb(void) { | ||
85 | // put your looping keyboard code here | ||
86 | // runs every cycle (a lot) | ||
87 | matrix_scan_user(); | ||
88 | } | ||
89 | |||
90 | void led_set_kb(uint8_t usb_led) { | ||
91 | |||
92 | } | ||