aboutsummaryrefslogtreecommitdiff
path: root/keyboards/telophase
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/telophase')
-rw-r--r--keyboards/telophase/config.h18
-rw-r--r--keyboards/telophase/matrix.c4
-rw-r--r--keyboards/telophase/rules.mk13
-rw-r--r--keyboards/telophase/telophase.c15
4 files changed, 10 insertions, 40 deletions
diff --git a/keyboards/telophase/config.h b/keyboards/telophase/config.h
index e9329c573..c67dd939b 100644
--- a/keyboards/telophase/config.h
+++ b/keyboards/telophase/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/telophase/matrix.c b/keyboards/telophase/matrix.c
index c332eba55..8edfce62d 100644
--- a/keyboards/telophase/matrix.c
+++ b/keyboards/telophase/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")
@@ -88,12 +89,11 @@ uint8_t matrix_cols(void) {
88void matrix_init(void) { 89void matrix_init(void) {
89 90
90 matrix_init_quantum(); 91 matrix_init_quantum();
92 serial_init();
91} 93}
92 94
93uint8_t matrix_scan(void) 95uint8_t matrix_scan(void)
94{ 96{
95 SERIAL_UART_INIT();
96
97 uint32_t timeout = 0; 97 uint32_t timeout = 0;
98 98
99 //the s character requests the RF slave to send the matrix 99 //the s character requests the RF slave to send the matrix
diff --git a/keyboards/telophase/rules.mk b/keyboards/telophase/rules.mk
index f2ac0adb6..65cac9364 100644
--- a/keyboards/telophase/rules.mk
+++ b/keyboards/telophase/rules.mk
@@ -27,20 +27,13 @@ NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
27# MIDI_ENABLE = YES # MIDI controls 27# MIDI_ENABLE = YES # MIDI controls
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
30LAYOUTS = ortho_4x12
31USB = /dev/ttyACM0
32
33# upload: build
34# $(MITOSIS_UPLOAD_COMMAND)
35
36OPT_DEFS += -DMITOSIS_PROMICRO
37MITOSIS_UPLOAD_COMMAND = while [ ! -r $(USB) ]; do sleep 1; done; \
38 avrdude -p $(MCU) -c avr109 -U flash:w:$(TARGET).hex -P $(USB)
39 30
40# # project specific files 31# # project specific files
41SRC = matrix.c 32SRC = matrix.c serial_uart.c
42 33
43# Disable unsupported hardware 34# Disable unsupported hardware
44RGBLIGHT_SUPPORTED = no 35RGBLIGHT_SUPPORTED = no
45AUDIO_SUPPORTED = no 36AUDIO_SUPPORTED = no
46BACKLIGHT_SUPPORTED = no 37BACKLIGHT_SUPPORTED = no
38
39LAYOUTS = ortho_4x12
diff --git a/keyboards/telophase/telophase.c b/keyboards/telophase/telophase.c
index c77a43389..0e04debeb 100644
--- a/keyboards/telophase/telophase.c
+++ b/keyboards/telophase/telophase.c
@@ -1,9 +1,5 @@
1#include "telophase.h" 1#include "telophase.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,20 +12,9 @@ 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 17
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}
32
33#ifdef SWAP_HANDS_ENABLE 18#ifdef SWAP_HANDS_ENABLE
34__attribute__ ((weak)) 19__attribute__ ((weak))
35const keypos_t hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = { 20const keypos_t hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = {