aboutsummaryrefslogtreecommitdiff
path: root/keyboards/sirius/uni660/rev2/rev2.c
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-02-05 22:21:23 +0000
committerQMK Bot <hello@qmk.fm>2021-02-05 22:21:23 +0000
commit843643aef36165ee6b00a52e19a272e69f19e6e1 (patch)
treee033218c8d1c6fed65b360e684b41530e96dca8a /keyboards/sirius/uni660/rev2/rev2.c
parentc3eee3a842366497abeacc22c02020622a339c46 (diff)
parent5ea92a9c1cbe3e20bf4830d550d797a8e9650da8 (diff)
downloadqmk_firmware-843643aef36165ee6b00a52e19a272e69f19e6e1.tar.gz
qmk_firmware-843643aef36165ee6b00a52e19a272e69f19e6e1.zip
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/sirius/uni660/rev2/rev2.c')
-rw-r--r--keyboards/sirius/uni660/rev2/rev2.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/keyboards/sirius/uni660/rev2/rev2.c b/keyboards/sirius/uni660/rev2/rev2.c
index e19240ccc..048495b99 100644
--- a/keyboards/sirius/uni660/rev2/rev2.c
+++ b/keyboards/sirius/uni660/rev2/rev2.c
@@ -1,9 +1,5 @@
1#include "rev2.h" 1#include "rev2.h"
2 2
3void uart_init(void) {
4 SERIAL_UART_INIT();
5}
6
7void led_init(void) { 3void led_init(void) {
8 setPinOutput(D1); // Pin to green, set as output 4 setPinOutput(D1); // Pin to green, set as output
9 writePinHigh(D1); // Turn it off 5 writePinHigh(D1); // Turn it off
@@ -17,7 +13,6 @@ void matrix_init_kb(void) {
17 // put your keyboard start-up code here 13 // put your keyboard start-up code here
18 // runs once when the firmware starts up 14 // runs once when the firmware starts up
19 matrix_init_user(); 15 matrix_init_user();
20 uart_init();
21 led_init(); 16 led_init();
22} 17}
23 18