diff options
| author | Ryan <fauxpark@gmail.com> | 2021-02-06 09:20:48 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-06 09:20:48 +1100 |
| commit | 5ea92a9c1cbe3e20bf4830d550d797a8e9650da8 (patch) | |
| tree | 75ea1413ae4fa23bd0b1230629b6a3b3e215c5eb /keyboards/chimera_ls | |
| parent | 464eb7137d27e3a31e85032c85c9fda627a8b33f (diff) | |
| download | qmk_firmware-5ea92a9c1cbe3e20bf4830d550d797a8e9650da8.tar.gz qmk_firmware-5ea92a9c1cbe3e20bf4830d550d797a8e9650da8.zip | |
Serial refactor (#11521)
Diffstat (limited to 'keyboards/chimera_ls')
| -rw-r--r-- | keyboards/chimera_ls/chimera_ls.c | 15 | ||||
| -rw-r--r-- | keyboards/chimera_ls/config.h | 18 | ||||
| -rw-r--r-- | keyboards/chimera_ls/matrix.c | 4 | ||||
| -rw-r--r-- | keyboards/chimera_ls/rules.mk | 8 |
4 files changed, 8 insertions, 37 deletions
diff --git a/keyboards/chimera_ls/chimera_ls.c b/keyboards/chimera_ls/chimera_ls.c index 588b02b2d..f88e9a4f1 100644 --- a/keyboards/chimera_ls/chimera_ls.c +++ b/keyboards/chimera_ls/chimera_ls.c | |||
| @@ -1,9 +1,5 @@ | |||
| 1 | #include "chimera_ls.h" | 1 | #include "chimera_ls.h" |
| 2 | 2 | ||
| 3 | void uart_init(void) { | ||
| 4 | SERIAL_UART_INIT(); | ||
| 5 | } | ||
| 6 | |||
| 7 | void led_init(void) { | 3 | void led_init(void) { |
| 8 | DDRD |= (1<<1); | 4 | DDRD |= (1<<1); |
| 9 | PORTD |= (1<<1); | 5 | PORTD |= (1<<1); |
| @@ -16,16 +12,5 @@ void matrix_init_kb(void) { | |||
| 16 | // put your keyboard start-up code here | 12 | // put your keyboard start-up code here |
| 17 | // runs once when the firmware starts up | 13 | // runs once when the firmware starts up |
| 18 | matrix_init_user(); | 14 | matrix_init_user(); |
| 19 | uart_init(); | ||
| 20 | led_init(); | 15 | led_init(); |
| 21 | } | 16 | } |
| 22 | |||
| 23 | void matrix_scan_kb(void) { | ||
| 24 | // put your looping keyboard code here | ||
| 25 | // runs every cycle (a lot) | ||
| 26 | matrix_scan_user(); | ||
| 27 | } | ||
| 28 | |||
| 29 | void led_set_kb(uint8_t usb_led) { | ||
| 30 | |||
| 31 | } | ||
diff --git a/keyboards/chimera_ls/config.h b/keyboards/chimera_ls/config.h index 87e919609..d9c14a3fc 100644 --- a/keyboards/chimera_ls/config.h +++ b/keyboards/chimera_ls/config.h | |||
| @@ -60,19 +60,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 60 | 60 | ||
| 61 | //UART settings for communication with the RF microcontroller | 61 | //UART settings for communication with the RF microcontroller |
| 62 | #define SERIAL_UART_BAUD 1000000 | 62 | #define SERIAL_UART_BAUD 1000000 |
| 63 | #define SERIAL_UART_DATA UDR1 | ||
| 64 | #define SERIAL_UART_UBRR (F_CPU / (16UL * SERIAL_UART_BAUD) - 1) | ||
| 65 | #define SERIAL_UART_TXD_READY (UCSR1A & _BV(UDRE1)) | ||
| 66 | #define SERIAL_UART_RXD_PRESENT (UCSR1A & _BV(RXC1)) | 63 | #define SERIAL_UART_RXD_PRESENT (UCSR1A & _BV(RXC1)) |
| 67 | #define SERIAL_UART_INIT() do { \ | 64 | #define SERIAL_UART_INIT_CUSTOM \ |
| 68 | /* baud rate */ \ | 65 | /* enable TX and RX */ \ |
| 69 | UBRR1L = SERIAL_UART_UBRR; \ | 66 | UCSR1B = _BV(TXEN1) | _BV(RXEN1); \ |
| 70 | /* baud rate */ \ | 67 | /* 8-bit data */ \ |
| 71 | UBRR1H = SERIAL_UART_UBRR >> 8; \ | 68 | UCSR1C = _BV(UCSZ11) | _BV(UCSZ10); |
| 72 | /* enable TX and RX */ \ | ||
| 73 | UCSR1B = _BV(TXEN1) | _BV(RXEN1); \ | ||
| 74 | /* 8-bit data */ \ | ||
| 75 | UCSR1C = _BV(UCSZ11) | _BV(UCSZ10); \ | ||
| 76 | } while(0) | ||
| 77 | 69 | ||
| 78 | #endif | 70 | #endif |
diff --git a/keyboards/chimera_ls/matrix.c b/keyboards/chimera_ls/matrix.c index 72fe44137..7208d971e 100644 --- a/keyboards/chimera_ls/matrix.c +++ b/keyboards/chimera_ls/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") |
| @@ -92,12 +93,11 @@ uint8_t matrix_cols(void) { | |||
| 92 | 93 | ||
| 93 | void matrix_init(void) { | 94 | void matrix_init(void) { |
| 94 | matrix_init_quantum(); | 95 | matrix_init_quantum(); |
| 96 | serial_init(); | ||
| 95 | } | 97 | } |
| 96 | 98 | ||
| 97 | uint8_t matrix_scan(void) | 99 | uint8_t matrix_scan(void) |
| 98 | { | 100 | { |
| 99 | SERIAL_UART_INIT(); | ||
| 100 | |||
| 101 | uint32_t timeout = 0; | 101 | uint32_t timeout = 0; |
| 102 | 102 | ||
| 103 | //the s character requests the RF slave to send the matrix | 103 | //the s character requests the RF slave to send the matrix |
diff --git a/keyboards/chimera_ls/rules.mk b/keyboards/chimera_ls/rules.mk index 162e06aaf..536e6053a 100644 --- a/keyboards/chimera_ls/rules.mk +++ b/keyboards/chimera_ls/rules.mk | |||
| @@ -28,14 +28,8 @@ NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA | |||
| 28 | UNICODE_ENABLE = YES # Unicode | 28 | UNICODE_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 | ||
| 31 | USB = /dev/ttyACM0 | ||
| 32 | |||
| 33 | OPT_DEFS += -DCHIMERA_LS_PROMICRO | ||
| 34 | CHIMERA_LS_UPLOAD_COMMAND = while [ ! -r $(USB) ]; do sleep 1; done; \ | ||
| 35 | avrdude -p $(MCU) -c avr109 -U flash:w:$(TARGET).hex -P $(USB) | ||
| 36 | |||
| 37 | # project specific files | 31 | # project specific files |
| 38 | SRC = matrix.c | 32 | SRC += matrix.c serial_uart.c |
| 39 | 33 | ||
| 40 | LAYOUTS = ortho_4x12 | 34 | LAYOUTS = ortho_4x12 |
| 41 | 35 | ||
