aboutsummaryrefslogtreecommitdiff
path: root/keyboards/chimera_ortho
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/chimera_ortho
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/chimera_ortho')
-rw-r--r--keyboards/chimera_ortho/chimera_ortho.c15
-rw-r--r--keyboards/chimera_ortho/config.h18
-rw-r--r--keyboards/chimera_ortho/matrix.c4
-rw-r--r--keyboards/chimera_ortho/rules.mk8
4 files changed, 8 insertions, 37 deletions
diff --git a/keyboards/chimera_ortho/chimera_ortho.c b/keyboards/chimera_ortho/chimera_ortho.c
index 2a602cf2f..2cdc3d933 100644
--- a/keyboards/chimera_ortho/chimera_ortho.c
+++ b/keyboards/chimera_ortho/chimera_ortho.c
@@ -1,9 +1,5 @@
1#include "chimera_ortho.h" 1#include "chimera_ortho.h"
2 2
3void uart_init(void) {
4 SERIAL_UART_INIT();
5}
6
7void led_init(void) { 3void 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
23void matrix_scan_kb(void) {
24 // put your looping keyboard code here
25 // runs every cycle (a lot)
26 matrix_scan_user();
27}
28
29void led_set_kb(uint8_t usb_led) {
30
31}
diff --git a/keyboards/chimera_ortho/config.h b/keyboards/chimera_ortho/config.h
index 4ce70e68b..b10358987 100644
--- a/keyboards/chimera_ortho/config.h
+++ b/keyboards/chimera_ortho/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_ortho/matrix.c b/keyboards/chimera_ortho/matrix.c
index dc38ba74f..eb2f18473 100644
--- a/keyboards/chimera_ortho/matrix.c
+++ b/keyboards/chimera_ortho/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/chimera_ortho/rules.mk b/keyboards/chimera_ortho/rules.mk
index bf341ab5d..e3bbaa39d 100644
--- a/keyboards/chimera_ortho/rules.mk
+++ b/keyboards/chimera_ortho/rules.mk
@@ -28,11 +28,5 @@ 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
33OPT_DEFS += -DCHIMERA_ORTHO_PROMICRO
34CHIMERA_ORTHO_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
38SRC = matrix.c 32SRC += matrix.c serial_uart.c