aboutsummaryrefslogtreecommitdiff
path: root/keyboards/chimera_ls
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/chimera_ls')
-rw-r--r--keyboards/chimera_ls/chimera_ls.c15
-rw-r--r--keyboards/chimera_ls/config.h18
-rw-r--r--keyboards/chimera_ls/matrix.c4
-rw-r--r--keyboards/chimera_ls/rules.mk8
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
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_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
93void matrix_init(void) { 94void matrix_init(void) {
94 matrix_init_quantum(); 95 matrix_init_quantum();
96 serial_init();
95} 97}
96 98
97uint8_t matrix_scan(void) 99uint8_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
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_LS_PROMICRO
34CHIMERA_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
38SRC = matrix.c 32SRC += matrix.c serial_uart.c
39 33
40LAYOUTS = ortho_4x12 34LAYOUTS = ortho_4x12
41 35