aboutsummaryrefslogtreecommitdiff
path: root/keyboards/comet46
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/comet46
parent464eb7137d27e3a31e85032c85c9fda627a8b33f (diff)
downloadqmk_firmware-5ea92a9c1cbe3e20bf4830d550d797a8e9650da8.tar.gz
qmk_firmware-5ea92a9c1cbe3e20bf4830d550d797a8e9650da8.zip
Serial refactor (#11521)
Diffstat (limited to 'keyboards/comet46')
-rw-r--r--keyboards/comet46/comet46.c21
-rw-r--r--keyboards/comet46/config.h18
-rw-r--r--keyboards/comet46/matrix.c4
-rw-r--r--keyboards/comet46/rules.mk4
4 files changed, 9 insertions, 38 deletions
diff --git a/keyboards/comet46/comet46.c b/keyboards/comet46/comet46.c
index 0710b8e33..7c7edba93 100644
--- a/keyboards/comet46/comet46.c
+++ b/keyboards/comet46/comet46.c
@@ -1,22 +1 @@
1#include "comet46.h" #include "comet46.h"
2
3void uart_init(void) {
4 SERIAL_UART_INIT();
5}
6
7void matrix_init_kb(void) {
8 // put your keyboard start-up code here
9 // runs once when the firmware starts up
10 matrix_init_user();
11 uart_init();
12}
13
14void matrix_scan_kb(void) {
15 // put your looping keyboard code here
16 // runs every cycle (a lot)
17 matrix_scan_user();
18}
19
20void led_set_kb(uint8_t usb_led) {
21
22}
diff --git a/keyboards/comet46/config.h b/keyboards/comet46/config.h
index d50224eb6..5ae026f92 100644
--- a/keyboards/comet46/config.h
+++ b/keyboards/comet46/config.h
@@ -66,19 +66,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
66 66
67//UART settings for communication with the RF microcontroller 67//UART settings for communication with the RF microcontroller
68#define SERIAL_UART_BAUD 1000000 68#define SERIAL_UART_BAUD 1000000
69#define SERIAL_UART_DATA UDR1
70#define SERIAL_UART_UBRR (F_CPU / (16UL * SERIAL_UART_BAUD) - 1)
71#define SERIAL_UART_TXD_READY (UCSR1A & _BV(UDRE1))
72#define SERIAL_UART_RXD_PRESENT (UCSR1A & _BV(RXC1)) 69#define SERIAL_UART_RXD_PRESENT (UCSR1A & _BV(RXC1))
73#define SERIAL_UART_INIT() do { \ 70#define SERIAL_UART_INIT_CUSTOM \
74 /* baud rate */ \ 71 /* enable TX and RX */ \
75 UBRR1L = SERIAL_UART_UBRR; \ 72 UCSR1B = _BV(TXEN1) | _BV(RXEN1); \
76 /* baud rate */ \ 73 /* 8-bit data */ \
77 UBRR1H = SERIAL_UART_UBRR >> 8; \ 74 UCSR1C = _BV(UCSZ11) | _BV(UCSZ10);
78 /* enable TX and RX */ \
79 UCSR1B = _BV(TXEN1) | _BV(RXEN1); \
80 /* 8-bit data */ \
81 UCSR1C = _BV(UCSZ11) | _BV(UCSZ10); \
82 } while(0)
83 75
84#endif 76#endif
diff --git a/keyboards/comet46/matrix.c b/keyboards/comet46/matrix.c
index dc38ba74f..eb2f18473 100644
--- a/keyboards/comet46/matrix.c
+++ b/keyboards/comet46/matrix.c
@@ -26,6 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
26#include "util.h" 26#include "util.h"
27#include "matrix.h" 27#include "matrix.h"
28#include "timer.h" 28#include "timer.h"
29#include "protocol/serial.h"
29 30
30#if (MATRIX_COLS <= 8) 31#if (MATRIX_COLS <= 8)
31# define print_matrix_header() print("\nr/c 01234567\n") 32# define print_matrix_header() print("\nr/c 01234567\n")
@@ -78,12 +79,11 @@ uint8_t matrix_cols(void) {
78void matrix_init(void) { 79void matrix_init(void) {
79 80
80 matrix_init_quantum(); 81 matrix_init_quantum();
82 serial_init();
81} 83}
82 84
83uint8_t matrix_scan(void) 85uint8_t matrix_scan(void)
84{ 86{
85 SERIAL_UART_INIT();
86
87 uint32_t timeout = 0; 87 uint32_t timeout = 0;
88 88
89 //the s character requests the RF slave to send the matrix 89 //the s character requests the RF slave to send the matrix
diff --git a/keyboards/comet46/rules.mk b/keyboards/comet46/rules.mk
index 2aaa5483c..1f22b7535 100644
--- a/keyboards/comet46/rules.mk
+++ b/keyboards/comet46/rules.mk
@@ -28,8 +28,8 @@ NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
28UNICODE_ENABLE = YES # Unicode 28UNICODE_ENABLE = YES # Unicode
29# BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID 29# BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID
30 30
31USB = /dev/ttyACM0
32# project specific files 31# project specific files
33SRC += matrix.c \ 32SRC += matrix.c \
34 i2c.c \ 33 i2c.c \
35 ssd1306.c 34 ssd1306.c \
35 serial_uart.c