aboutsummaryrefslogtreecommitdiff
path: root/keyboards/redox
diff options
context:
space:
mode:
authorMattia Dal Ben <mattdibi@users.noreply.github.com>2018-04-29 22:01:33 +0200
committerDrashna Jaelre <drashna@live.com>2018-04-29 13:01:33 -0700
commit3b7b1994cd9e3e61fdee84eff78875135642aa6c (patch)
treebb7be07641b6b4bf5b992a53d80990d92dc62e41 /keyboards/redox
parent19aa2c34e859946edae24108fe7df69c949b124e (diff)
downloadqmk_firmware-3b7b1994cd9e3e61fdee84eff78875135642aa6c.tar.gz
qmk_firmware-3b7b1994cd9e3e61fdee84eff78875135642aa6c.zip
Redox keyboard code (#2843)
* Added Redox keyboard with default keymap (IT layout) * Updated manufacturer url * Applied requested changes
Diffstat (limited to 'keyboards/redox')
-rw-r--r--keyboards/redox/config.h23
-rw-r--r--keyboards/redox/i2c.c162
-rw-r--r--keyboards/redox/i2c.h49
-rw-r--r--keyboards/redox/keymaps/default/config.h41
-rw-r--r--keyboards/redox/keymaps/default/keymap.c117
-rw-r--r--keyboards/redox/keymaps/default/readme.md1
-rw-r--r--keyboards/redox/keymaps/default/rules.mk5
-rw-r--r--keyboards/redox/matrix.c455
-rw-r--r--keyboards/redox/readme.md25
-rw-r--r--keyboards/redox/redox.c16
-rw-r--r--keyboards/redox/redox.h41
-rw-r--r--keyboards/redox/rev1/config.h88
-rw-r--r--keyboards/redox/rev1/rev1.c22
-rw-r--r--keyboards/redox/rev1/rev1.h66
-rw-r--r--keyboards/redox/rev1/rules.mk1
-rw-r--r--keyboards/redox/rules.mk80
-rw-r--r--keyboards/redox/serial.c228
-rw-r--r--keyboards/redox/serial.h26
-rw-r--r--keyboards/redox/split_util.c86
-rw-r--r--keyboards/redox/split_util.h21
20 files changed, 1553 insertions, 0 deletions
diff --git a/keyboards/redox/config.h b/keyboards/redox/config.h
new file mode 100644
index 000000000..1083ff5f5
--- /dev/null
+++ b/keyboards/redox/config.h
@@ -0,0 +1,23 @@
1/*
2Copyright 2018 Mattia Dal Ben <matthewdibi@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#ifndef CONFIG_H
19#define CONFIG_H
20
21#include "config_common.h"
22
23#endif
diff --git a/keyboards/redox/i2c.c b/keyboards/redox/i2c.c
new file mode 100644
index 000000000..084c890c4
--- /dev/null
+++ b/keyboards/redox/i2c.c
@@ -0,0 +1,162 @@
1#include <util/twi.h>
2#include <avr/io.h>
3#include <stdlib.h>
4#include <avr/interrupt.h>
5#include <util/twi.h>
6#include <stdbool.h>
7#include "i2c.h"
8
9#ifdef USE_I2C
10
11// Limits the amount of we wait for any one i2c transaction.
12// Since were running SCL line 100kHz (=> 10μs/bit), and each transactions is
13// 9 bits, a single transaction will take around 90μs to complete.
14//
15// (F_CPU/SCL_CLOCK) => # of μC cycles to transfer a bit
16// poll loop takes at least 8 clock cycles to execute
17#define I2C_LOOP_TIMEOUT (9+1)*(F_CPU/SCL_CLOCK)/8
18
19#define BUFFER_POS_INC() (slave_buffer_pos = (slave_buffer_pos+1)%SLAVE_BUFFER_SIZE)
20
21volatile uint8_t i2c_slave_buffer[SLAVE_BUFFER_SIZE];
22
23static volatile uint8_t slave_buffer_pos;
24static volatile bool slave_has_register_set = false;
25
26// Wait for an i2c operation to finish
27inline static
28void i2c_delay(void) {
29 uint16_t lim = 0;
30 while(!(TWCR & (1<<TWINT)) && lim < I2C_LOOP_TIMEOUT)
31 lim++;
32
33 // easier way, but will wait slightly longer
34 // _delay_us(100);
35}
36
37// Setup twi to run at 100kHz
38void i2c_master_init(void) {
39 // no prescaler
40 TWSR = 0;
41 // Set TWI clock frequency to SCL_CLOCK. Need TWBR>10.
42 // Check datasheets for more info.
43 TWBR = ((F_CPU/SCL_CLOCK)-16)/2;
44}
45
46// Start a transaction with the given i2c slave address. The direction of the
47// transfer is set with I2C_READ and I2C_WRITE.
48// returns: 0 => success
49// 1 => error
50uint8_t i2c_master_start(uint8_t address) {
51 TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWSTA);
52
53 i2c_delay();
54
55 // check that we started successfully
56 if ( (TW_STATUS != TW_START) && (TW_STATUS != TW_REP_START))
57 return 1;
58
59 TWDR = address;
60 TWCR = (1<<TWINT) | (1<<TWEN);
61
62 i2c_delay();
63
64 if ( (TW_STATUS != TW_MT_SLA_ACK) && (TW_STATUS != TW_MR_SLA_ACK) )
65 return 1; // slave did not acknowledge
66 else
67 return 0; // success
68}
69
70
71// Finish the i2c transaction.
72void i2c_master_stop(void) {
73 TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWSTO);
74
75 uint16_t lim = 0;
76 while(!(TWCR & (1<<TWSTO)) && lim < I2C_LOOP_TIMEOUT)
77 lim++;
78}
79
80// Write one byte to the i2c slave.
81// returns 0 => slave ACK
82// 1 => slave NACK
83uint8_t i2c_master_write(uint8_t data) {
84 TWDR = data;
85 TWCR = (1<<TWINT) | (1<<TWEN);
86
87 i2c_delay();
88
89 // check if the slave acknowledged us
90 return (TW_STATUS == TW_MT_DATA_ACK) ? 0 : 1;
91}
92
93// Read one byte from the i2c slave. If ack=1 the slave is acknowledged,
94// if ack=0 the acknowledge bit is not set.
95// returns: byte read from i2c device
96uint8_t i2c_master_read(int ack) {
97 TWCR = (1<<TWINT) | (1<<TWEN) | (ack<<TWEA);
98
99 i2c_delay();
100 return TWDR;
101}
102
103void i2c_reset_state(void) {
104 TWCR = 0;
105}
106
107void i2c_slave_init(uint8_t address) {
108 TWAR = address << 0; // slave i2c address
109 // TWEN - twi enable
110 // TWEA - enable address acknowledgement
111 // TWINT - twi interrupt flag
112 // TWIE - enable the twi interrupt
113 TWCR = (1<<TWIE) | (1<<TWEA) | (1<<TWINT) | (1<<TWEN);
114}
115
116ISR(TWI_vect);
117
118ISR(TWI_vect) {
119 uint8_t ack = 1;
120 switch(TW_STATUS) {
121 case TW_SR_SLA_ACK:
122 // this device has been addressed as a slave receiver
123 slave_has_register_set = false;
124 break;
125
126 case TW_SR_DATA_ACK:
127 // this device has received data as a slave receiver
128 // The first byte that we receive in this transaction sets the location
129 // of the read/write location of the slaves memory that it exposes over
130 // i2c. After that, bytes will be written at slave_buffer_pos, incrementing
131 // slave_buffer_pos after each write.
132 if(!slave_has_register_set) {
133 slave_buffer_pos = TWDR;
134 // don't acknowledge the master if this memory loctaion is out of bounds
135 if ( slave_buffer_pos >= SLAVE_BUFFER_SIZE ) {
136 ack = 0;
137 slave_buffer_pos = 0;
138 }
139 slave_has_register_set = true;
140 } else {
141 i2c_slave_buffer[slave_buffer_pos] = TWDR;
142 BUFFER_POS_INC();
143 }
144 break;
145
146 case TW_ST_SLA_ACK:
147 case TW_ST_DATA_ACK:
148 // master has addressed this device as a slave transmitter and is
149 // requesting data.
150 TWDR = i2c_slave_buffer[slave_buffer_pos];
151 BUFFER_POS_INC();
152 break;
153
154 case TW_BUS_ERROR: // something went wrong, reset twi state
155 TWCR = 0;
156 default:
157 break;
158 }
159 // Reset everything, so we are ready for the next TWI interrupt
160 TWCR |= (1<<TWIE) | (1<<TWINT) | (ack<<TWEA) | (1<<TWEN);
161}
162#endif
diff --git a/keyboards/redox/i2c.h b/keyboards/redox/i2c.h
new file mode 100644
index 000000000..43e596988
--- /dev/null
+++ b/keyboards/redox/i2c.h
@@ -0,0 +1,49 @@
1#ifndef I2C_H
2#define I2C_H
3
4#include <stdint.h>
5
6#ifndef F_CPU
7#define F_CPU 16000000UL
8#endif
9
10#define I2C_READ 1
11#define I2C_WRITE 0
12
13#define I2C_ACK 1
14#define I2C_NACK 0
15
16#define SLAVE_BUFFER_SIZE 0x10
17
18// i2c SCL clock frequency
19#define SCL_CLOCK 100000L
20
21extern volatile uint8_t i2c_slave_buffer[SLAVE_BUFFER_SIZE];
22
23void i2c_master_init(void);
24uint8_t i2c_master_start(uint8_t address);
25void i2c_master_stop(void);
26uint8_t i2c_master_write(uint8_t data);
27uint8_t i2c_master_read(int);
28void i2c_reset_state(void);
29void i2c_slave_init(uint8_t address);
30
31
32static inline unsigned char i2c_start_read(unsigned char addr) {
33 return i2c_master_start((addr << 1) | I2C_READ);
34}
35
36static inline unsigned char i2c_start_write(unsigned char addr) {
37 return i2c_master_start((addr << 1) | I2C_WRITE);
38}
39
40// from SSD1306 scrips
41extern unsigned char i2c_rep_start(unsigned char addr);
42extern void i2c_start_wait(unsigned char addr);
43extern unsigned char i2c_readAck(void);
44extern unsigned char i2c_readNak(void);
45extern unsigned char i2c_read(unsigned char ack);
46
47#define i2c_read(ack) (ack) ? i2c_readAck() : i2c_readNak();
48
49#endif
diff --git a/keyboards/redox/keymaps/default/config.h b/keyboards/redox/keymaps/default/config.h
new file mode 100644
index 000000000..ef1b4d944
--- /dev/null
+++ b/keyboards/redox/keymaps/default/config.h
@@ -0,0 +1,41 @@
1/*
2Copyright 2017 Danny Nguyen <danny@hexwire.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#ifndef CONFIG_USER_H
19#define CONFIG_USER_H
20
21#include "../../config.h"
22
23/* Use I2C or Serial, not both */
24
25// #define USE_SERIAL
26#define USE_I2C
27
28/* Select hand configuration */
29
30#define MASTER_LEFT
31// #define MASTER_RIGHT
32// #define EE_HANDS
33
34#undef RGBLED_NUM
35#define RGBLIGHT_ANIMATIONS
36#define RGBLED_NUM 14
37#define RGBLIGHT_HUE_STEP 8
38#define RGBLIGHT_SAT_STEP 8
39#define RGBLIGHT_VAL_STEP 8
40
41#endif
diff --git a/keyboards/redox/keymaps/default/keymap.c b/keyboards/redox/keymaps/default/keymap.c
new file mode 100644
index 000000000..d8fd76d02
--- /dev/null
+++ b/keyboards/redox/keymaps/default/keymap.c
@@ -0,0 +1,117 @@
1#include QMK_KEYBOARD_H
2
3extern keymap_config_t keymap_config;
4extern rgblight_config_t rgblight_config;
5
6// Each layer gets a name for readability, which is then used in the keymap matrix below.
7// The underscores don't mean anything - you can have a layer called STUFF or any other name.
8// Layer names don't all need to be of the same length, obviously, and you can also skip them
9// entirely and just use numbers.
10#define _QWERTY 0
11#define _SYMB 1
12#define _NAV 2
13#define _ADJUST 3
14
15enum custom_keycodes {
16 QWERTY = SAFE_RANGE,
17 SYMB,
18 NAV,
19 ADJUST,
20};
21
22// Fillers to make layering more clear
23#define KC_ KC_TRNS
24#define _______ KC_TRNS
25#define XXXXXXX KC_NO
26
27const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
28
29/* QWERTY
30 * ,------------------------------------------------. ,------------------------------------------------.
31 * |\-Lyr2| 1 | 2 | 3 | 4 | 5 | Lyr1 | | Lyr1 | 6 | 7 | 8 | 9 | 0 |'-Lyr2|
32 * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
33 * | Tab | Q | W | E | R | T | [ | | ] | Y | U | I | O | P | è |
34 * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
35 * | Esc | A | S | D | F | G | PgUp | | End | H | J | K | L | ò | à |
36 * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
37 * | Shift| Z | X | C | V | B | PgDn | | Home | N | M | , | . | ù |-(Sft)|
38 * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
39 * |<(Gui)| + | - |*(Alt)|/(Ctr)|Bcksp | Del | |Enter |Space |ì(AlG)| Left | Down | Up | Right|
40 * `------------------------------------------------' `------------------------------------------------'
41 */
42 [_QWERTY] = LAYOUT(
43 //,----+----+----+----+----+----+----. ,----+----+----+----+----+----+----.
44 LT(_NAV, KC_GRV) , KC_1 , KC_2 , KC_3 , KC_4 , KC_5 ,MO(_SYMB), MO(_SYMB), KC_6 , KC_7 , KC_8 , KC_9 , KC_0 ,LT(_NAV, KC_MINS),
45 //|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
46 KC_TAB , KC_Q , KC_W , KC_E , KC_R , KC_T ,RALT(KC_LBRC), RALT(KC_RBRC) , KC_Y , KC_U , KC_I , KC_O , KC_P ,KC_LBRC,
47 //|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
48 KC_ESC , KC_A , KC_S , KC_D , KC_F , KC_G , LT(_ADJUST, KC_PGUP), LT( _ADJUST, KC_END) , KC_H , KC_J , KC_K , KC_L ,KC_SCLN,KC_QUOT,
49 //|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
50 KC_LSFT, KC_Z , KC_X , KC_C , KC_V , KC_B ,KC_PGDN, KC_HOME , KC_N , KC_M ,KC_COMM,KC_DOT ,KC_BSLASH,RSFT_T(KC_SLSH),
51 //|----+----+----+----+----+----+----| |----+----+----+----+----+----+----|
52 LGUI_T(KC_NONUS_BSLASH),KC_PPLS,KC_PMNS,LALT_T(KC_PAST),LCTL_T(KC_PSLS),KC_BSPC,KC_DEL , KC_ENT , KC_SPC, RALT_T(KC_EQL),KC_LEFT,KC_DOWN, KC_UP ,KC_RGHT
53 //`----+----+----+----+----+----+----' `----+----+----+----+----+----+----'
54 ),
55
56/* Symbols
57 * ,------------------------------------------------. ,------------------------------------------------.
58 * | | F1 | F2 | F3 | F4 | F5 | | | | F6 | F7 | F8 | F9 | F10 | |
59 * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
60 * | | ! | @ | { | } | | | | | | | 7 | 8 | 9 | | |
61 * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
62 * | | # | $ | [ | ] | ~ | | | | | 4 | 5 | 6 | | |
63 * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
64 * | | % | ^ | ( | ) | ` | | | | | 1 | 2 | 3 | | |
65 * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
66 * | | | | | | | | | | | 0 | 0 | . | | |
67 * `------------------------------------------------' `------------------------------------------------'
68 */
69
70 [_SYMB] = LAYOUT(
71 _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, _______, _______, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, XXXXXXX,
72 _______, KC_EXLM, RALT(KC_SCLN), RALT(KC_LCBR), RALT(KC_RCBR), KC_TILD, _______, _______, XXXXXXX, KC_KP_7, KC_KP_8, KC_KP_9, XXXXXXX, XXXXXXX,
73 _______, RALT(KC_QUOT), KC_DLR , RALT(KC_LBRC), RALT(KC_RBRC), RALT(KC_EQL), _______, _______, XXXXXXX, KC_KP_4, KC_KP_5, KC_KP_6, XXXXXXX, XXXXXXX,
74 _______, KC_PERC, LSFT(KC_EQL) , LSFT(KC_8), LSFT(KC_9), RALT(KC_MINS), _______, _______, XXXXXXX, KC_KP_1, KC_KP_2, KC_KP_3, XXXXXXX, XXXXXXX,
75 _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_KP_0, KC_KP_0, KC_PDOT, XXXXXXX, XXXXXXX
76 ),
77
78/* Navigation
79 * ,------------------------------------------------. ,------------------------------------------------.
80 * | | | | | | | | | | | | | | | |
81 * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
82 * | | |MOUS_U| |WHEL_U| | | | | | | | | | |
83 * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
84 * | |MOUS_L|MOUS_D|MOUS_R|WHEL_D| | | | | LEFT | DOWN | UP |RIGHT | | |
85 * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
86 * | | | | | | | | | | | | | | | |
87 * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
88 * | | | | |MOUS_1|MOUS_2| | | | | | | | | |
89 * `------------------------------------------------' `------------------------------------------------'
90 */
91 [_NAV] = LAYOUT(
92 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
93 XXXXXXX, XXXXXXX, KC_MS_U, XXXXXXX, KC_WH_U, XXXXXXX, _______, _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
94 XXXXXXX, KC_MS_L, KC_MS_D, KC_MS_R, KC_WH_D, XXXXXXX, _______, _______, KC_LEFT, KC_DOWN, KC_UP , KC_RIGHT,XXXXXXX, XXXXXXX,
95 XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
96 XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_BTN1, KC_BTN2, _______, _______, _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX
97 ),
98
99 [_ADJUST] = LAYOUT(
100 XXXXXXX, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, XXXXXXX,
101 XXXXXXX, RESET , RGB_M_P, RGB_TOG, RGB_MOD, RGB_HUD, RGB_HUI, RGB_SAD, RGB_SAI, RGB_VAD, RGB_VAI, XXXXXXX, KC_DEL, XXXXXXX,
102 XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
103 XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
104 XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX
105 )
106
107};
108
109#ifdef AUDIO_ENABLE
110float tone_qwerty[][2] = SONG(QWERTY_SOUND);
111#endif
112
113void persistent_default_layer_set(uint16_t default_layer) {
114 eeconfig_update_default_layer(default_layer);
115 default_layer_set(default_layer);
116}
117
diff --git a/keyboards/redox/keymaps/default/readme.md b/keyboards/redox/keymaps/default/readme.md
new file mode 100644
index 000000000..7f086f6e1
--- /dev/null
+++ b/keyboards/redox/keymaps/default/readme.md
@@ -0,0 +1 @@
# The default keymap for redox \ No newline at end of file
diff --git a/keyboards/redox/keymaps/default/rules.mk b/keyboards/redox/keymaps/default/rules.mk
new file mode 100644
index 000000000..1e5761278
--- /dev/null
+++ b/keyboards/redox/keymaps/default/rules.mk
@@ -0,0 +1,5 @@
1RGBLIGHT_ENABLE = yes
2
3ifndef QUANTUM_DIR
4 include ../../../../Makefile
5endif
diff --git a/keyboards/redox/matrix.c b/keyboards/redox/matrix.c
new file mode 100644
index 000000000..20c0f1d34
--- /dev/null
+++ b/keyboards/redox/matrix.c
@@ -0,0 +1,455 @@
1/*
2Copyright 2018 Mattia Dal Ben <matthewdibi@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18/*
19 * scan matrix
20 */
21#include <stdint.h>
22#include <stdbool.h>
23#include <avr/io.h>
24#include "wait.h"
25#include "print.h"
26#include "debug.h"
27#include "util.h"
28#include "matrix.h"
29#include "split_util.h"
30#include "pro_micro.h"
31#include "config.h"
32#include "timer.h"
33
34#ifdef USE_I2C
35# include "i2c.h"
36#else // USE_SERIAL
37# include "serial.h"
38#endif
39
40#ifndef DEBOUNCING_DELAY
41# define DEBOUNCING_DELAY 5
42#endif
43
44#if (DEBOUNCING_DELAY > 0)
45 static uint16_t debouncing_time;
46 static bool debouncing = false;
47#endif
48
49#if (MATRIX_COLS <= 8)
50# define print_matrix_header() print("\nr/c 01234567\n")
51# define print_matrix_row(row) print_bin_reverse8(matrix_get_row(row))
52# define matrix_bitpop(i) bitpop(matrix[i])
53# define ROW_SHIFTER ((uint8_t)1)
54#else
55# error "Currently only supports 8 COLS"
56#endif
57static matrix_row_t matrix_debouncing[MATRIX_ROWS];
58
59#define ERROR_DISCONNECT_COUNT 5
60
61#define ROWS_PER_HAND (MATRIX_ROWS/2)
62
63static uint8_t error_count = 0;
64
65static const uint8_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
66static const uint8_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS;
67
68/* matrix state(1:on, 0:off) */
69static matrix_row_t matrix[MATRIX_ROWS];
70static matrix_row_t matrix_debouncing[MATRIX_ROWS];
71
72#if (DIODE_DIRECTION == COL2ROW)
73 static void init_cols(void);
74 static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row);
75 static void unselect_rows(void);
76 static void select_row(uint8_t row);
77 static void unselect_row(uint8_t row);
78#elif (DIODE_DIRECTION == ROW2COL)
79 static void init_rows(void);
80 static bool read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col);
81 static void unselect_cols(void);
82 static void unselect_col(uint8_t col);
83 static void select_col(uint8_t col);
84#endif
85
86__attribute__ ((weak))
87void matrix_init_kb(void) {
88 matrix_init_user();
89}
90
91__attribute__ ((weak))
92void matrix_scan_kb(void) {
93 matrix_scan_user();
94}
95
96__attribute__ ((weak))
97void matrix_init_user(void) {
98}
99
100__attribute__ ((weak))
101void matrix_scan_user(void) {
102}
103
104inline
105uint8_t matrix_rows(void)
106{
107 return MATRIX_ROWS;
108}
109
110inline
111uint8_t matrix_cols(void)
112{
113 return MATRIX_COLS;
114}
115
116void matrix_init(void)
117{
118 debug_enable = true;
119 debug_matrix = true;
120 debug_mouse = true;
121 // initialize row and col
122 unselect_rows();
123 init_cols();
124
125 TX_RX_LED_INIT;
126
127 // initialize matrix state: all keys off
128 for (uint8_t i=0; i < MATRIX_ROWS; i++) {
129 matrix[i] = 0;
130 matrix_debouncing[i] = 0;
131 }
132
133 matrix_init_quantum();
134
135}
136
137uint8_t _matrix_scan(void)
138{
139 int offset = isLeftHand ? 0 : (ROWS_PER_HAND);
140#if (DIODE_DIRECTION == COL2ROW)
141 // Set row, read cols
142 for (uint8_t current_row = 0; current_row < ROWS_PER_HAND; current_row++) {
143# if (DEBOUNCING_DELAY > 0)
144 bool matrix_changed = read_cols_on_row(matrix_debouncing+offset, current_row);
145
146 if (matrix_changed) {
147 debouncing = true;
148 debouncing_time = timer_read();
149 PORTD ^= (1 << 2);
150 }
151
152# else
153 read_cols_on_row(matrix+offset, current_row);
154# endif
155
156 }
157
158#elif (DIODE_DIRECTION == ROW2COL)
159 // Set col, read rows
160 for (uint8_t current_col = 0; current_col < MATRIX_COLS; current_col++) {
161# if (DEBOUNCING_DELAY > 0)
162 bool matrix_changed = read_rows_on_col(matrix_debouncing+offset, current_col);
163 if (matrix_changed) {
164 debouncing = true;
165 debouncing_time = timer_read();
166 }
167# else
168 read_rows_on_col(matrix+offset, current_col);
169# endif
170
171 }
172#endif
173
174# if (DEBOUNCING_DELAY > 0)
175 if (debouncing && (timer_elapsed(debouncing_time) > DEBOUNCING_DELAY)) {
176 for (uint8_t i = 0; i < ROWS_PER_HAND; i++) {
177 matrix[i+offset] = matrix_debouncing[i+offset];
178 }
179 debouncing = false;
180 }
181# endif
182
183 return 1;
184}
185
186#ifdef USE_I2C
187
188// Get rows from other half over i2c
189int i2c_transaction(void) {
190 int slaveOffset = (isLeftHand) ? (ROWS_PER_HAND) : 0;
191
192 int err = i2c_master_start(SLAVE_I2C_ADDRESS + I2C_WRITE);
193 if (err) goto i2c_error;
194
195 // start of matrix stored at 0x00
196 err = i2c_master_write(0x00);
197 if (err) goto i2c_error;
198
199 // Start read
200 err = i2c_master_start(SLAVE_I2C_ADDRESS + I2C_READ);
201 if (err) goto i2c_error;
202
203 if (!err) {
204 int i;
205 for (i = 0; i < ROWS_PER_HAND-1; ++i) {
206 matrix[slaveOffset+i] = i2c_master_read(I2C_ACK);
207 }
208 matrix[slaveOffset+i] = i2c_master_read(I2C_NACK);
209 i2c_master_stop();
210 } else {
211i2c_error: // the cable is disconnceted, or something else went wrong
212 i2c_reset_state();
213 return err;
214 }
215
216 return 0;
217}
218
219#else // USE_SERIAL
220
221int serial_transaction(void) {
222 int slaveOffset = (isLeftHand) ? (ROWS_PER_HAND) : 0;
223
224 if (serial_update_buffers()) {
225 return 1;
226 }
227
228 for (int i = 0; i < ROWS_PER_HAND; ++i) {
229 matrix[slaveOffset+i] = serial_slave_buffer[i];
230 }
231 return 0;
232}
233#endif
234
235uint8_t matrix_scan(void)
236{
237 uint8_t ret = _matrix_scan();
238
239#ifdef USE_I2C
240 if( i2c_transaction() ) {
241#else // USE_SERIAL
242 if( serial_transaction() ) {
243#endif
244 // turn on the indicator led when halves are disconnected
245 TXLED1;
246
247 error_count++;
248
249 if (error_count > ERROR_DISCONNECT_COUNT) {
250 // reset other half if disconnected
251 int slaveOffset = (isLeftHand) ? (ROWS_PER_HAND) : 0;
252 for (int i = 0; i < ROWS_PER_HAND; ++i) {
253 matrix[slaveOffset+i] = 0;
254 }
255 }
256 } else {
257 // turn off the indicator led on no error
258 TXLED0;
259 error_count = 0;
260 }
261 matrix_scan_quantum();
262 return ret;
263}
264
265void matrix_slave_scan(void) {
266 _matrix_scan();
267
268 int offset = (isLeftHand) ? 0 : ROWS_PER_HAND;
269
270#ifdef USE_I2C
271 for (int i = 0; i < ROWS_PER_HAND; ++i) {
272 i2c_slave_buffer[i] = matrix[offset+i];
273 }
274#else // USE_SERIAL
275 for (int i = 0; i < ROWS_PER_HAND; ++i) {
276 serial_slave_buffer[i] = matrix[offset+i];
277 }
278#endif
279}
280
281bool matrix_is_modified(void)
282{
283 if (debouncing) return false;
284 return true;
285}
286
287inline
288bool matrix_is_on(uint8_t row, uint8_t col)
289{
290 return (matrix[row] & ((matrix_row_t)1<<col));
291}
292
293inline
294matrix_row_t matrix_get_row(uint8_t row)
295{
296 return matrix[row];
297}
298
299void matrix_print(void)
300{
301 print("\nr/c 0123456789ABCDEF\n");
302 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
303 phex(row); print(": ");
304 pbin_reverse16(matrix_get_row(row));
305 print("\n");
306 }
307}
308
309uint8_t matrix_key_count(void)
310{
311 uint8_t count = 0;
312 for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
313 count += bitpop16(matrix[i]);
314 }
315 return count;
316}
317
318#if (DIODE_DIRECTION == COL2ROW)
319
320static void init_cols(void)
321{
322 for(uint8_t x = 0; x < MATRIX_COLS; x++) {
323 uint8_t pin = col_pins[x];
324 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
325 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
326 }
327}
328
329static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row)
330{
331 // Store last value of row prior to reading
332 matrix_row_t last_row_value = current_matrix[current_row];
333
334 // Clear data in matrix row
335 current_matrix[current_row] = 0;
336
337 // Select row and wait for row selecton to stabilize
338 select_row(current_row);
339 wait_us(30);
340
341 // For each col...
342 for(uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++) {
343
344 // Select the col pin to read (active low)
345 uint8_t pin = col_pins[col_index];
346 uint8_t pin_state = (_SFR_IO8(pin >> 4) & _BV(pin & 0xF));
347
348 // Populate the matrix row with the state of the col pin
349 current_matrix[current_row] |= pin_state ? 0 : (ROW_SHIFTER << col_index);
350 }
351
352 // Unselect row
353 unselect_row(current_row);
354
355 return (last_row_value != current_matrix[current_row]);
356}
357
358static void select_row(uint8_t row)
359{
360 uint8_t pin = row_pins[row];
361 _SFR_IO8((pin >> 4) + 1) |= _BV(pin & 0xF); // OUT
362 _SFR_IO8((pin >> 4) + 2) &= ~_BV(pin & 0xF); // LOW
363}
364
365static void unselect_row(uint8_t row)
366{
367 uint8_t pin = row_pins[row];
368 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
369 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
370}
371
372static void unselect_rows(void)
373{
374 for(uint8_t x = 0; x < ROWS_PER_HAND; x++) {
375 uint8_t pin = row_pins[x];
376 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
377 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
378 }
379}
380
381#elif (DIODE_DIRECTION == ROW2COL)
382
383static void init_rows(void)
384{
385 for(uint8_t x = 0; x < ROWS_PER_HAND; x++) {
386 uint8_t pin = row_pins[x];
387 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
388 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
389 }
390}
391
392static bool read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col)
393{
394 bool matrix_changed = false;
395
396 // Select col and wait for col selecton to stabilize
397 select_col(current_col);
398 wait_us(30);
399
400 // For each row...
401 for(uint8_t row_index = 0; row_index < ROWS_PER_HAND; row_index++)
402 {
403
404 // Store last value of row prior to reading
405 matrix_row_t last_row_value = current_matrix[row_index];
406
407 // Check row pin state
408 if ((_SFR_IO8(row_pins[row_index] >> 4) & _BV(row_pins[row_index] & 0xF)) == 0)
409 {
410 // Pin LO, set col bit
411 current_matrix[row_index] |= (ROW_SHIFTER << current_col);
412 }
413 else
414 {
415 // Pin HI, clear col bit
416 current_matrix[row_index] &= ~(ROW_SHIFTER << current_col);
417 }
418
419 // Determine if the matrix changed state
420 if ((last_row_value != current_matrix[row_index]) && !(matrix_changed))
421 {
422 matrix_changed = true;
423 }
424 }
425
426 // Unselect col
427 unselect_col(current_col);
428
429 return matrix_changed;
430}
431
432static void select_col(uint8_t col)
433{
434 uint8_t pin = col_pins[col];
435 _SFR_IO8((pin >> 4) + 1) |= _BV(pin & 0xF); // OUT
436 _SFR_IO8((pin >> 4) + 2) &= ~_BV(pin & 0xF); // LOW
437}
438
439static void unselect_col(uint8_t col)
440{
441 uint8_t pin = col_pins[col];
442 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
443 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
444}
445
446static void unselect_cols(void)
447{
448 for(uint8_t x = 0; x < MATRIX_COLS; x++) {
449 uint8_t pin = col_pins[x];
450 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
451 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
452 }
453}
454
455#endif
diff --git a/keyboards/redox/readme.md b/keyboards/redox/readme.md
new file mode 100644
index 000000000..6e1d980a7
--- /dev/null
+++ b/keyboards/redox/readme.md
@@ -0,0 +1,25 @@
1# The Redox keyboard
2
3<p align="center">
4<img src="https://github.com/mattdibi/redox-keyboard/raw/master/img/redox-logo.png" alt="Redox logo" width="600"/>
5</p>
6
7<p align="center">
8<img src="https://github.com/mattdibi/redox-keyboard/raw/master/img/redox-pcb2.jpg" alt="Redox PCB rev1.0" width="600"/>
9</p>
10
11**Redox**: the **R**educed **E**rgo**dox** project. More information and building instruction [here](https://github.com/mattdibi/redox-keyboard).
12
13- Keyboard Maintainer: [Mattia Dal Ben](https://github.com/mattdibi)
14- Hardware Supported: Redox PCB rev1.0 w/ Pro Micro
15- Hardware Availability: [Falbatech](https://falba.tech/product-category/keyboard-parts/redox-parts/)
16
17Make example for this keyboard (after setting up your build environment):
18
19 make redox/rev1:default
20
21Example of flashing this keyboard:
22
23 make redox/rev1:default:avrdude
24
25See [build environment setup](https://docs.qmk.fm/build_environment_setup.html) then the [make instructions](https://docs.qmk.fm/make_instructions.html) for more information.
diff --git a/keyboards/redox/redox.c b/keyboards/redox/redox.c
new file mode 100644
index 000000000..7fa3545a4
--- /dev/null
+++ b/keyboards/redox/redox.c
@@ -0,0 +1,16 @@
1/* Copyright 2017 REPLACE_WITH_YOUR_NAME
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#include "redox.h"
diff --git a/keyboards/redox/redox.h b/keyboards/redox/redox.h
new file mode 100644
index 000000000..73f5ab85a
--- /dev/null
+++ b/keyboards/redox/redox.h
@@ -0,0 +1,41 @@
1/* Copyright 2017 REPLACE_WITH_YOUR_NAME
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#ifndef REDOX_H
17#define REDOX_H
18
19#ifdef KEYBOARD_redox_rev1
20 #include "rev1.h"
21#endif
22
23// Used to create a keymap using only KC_ prefixed keys
24#define LAYOUT_kc( \
25 L00, L01, L02, L03, L04, L05, L06, R00, R01, R02, R03, R04, R05, R06, \
26 L10, L11, L12, L13, L14, L15, L16, R10, R11, R12, R13, R14, R15, R16, \
27 L20, L21, L22, L23, L24, L25, L26, R20, R21, R22, R23, R24, R25, R26, \
28 L30, L31, L32, L33, L34, L35, L36, R30, R31, R32, R33, R34, R35, R36, \
29 L40, L41, L42, L43, L44, L45, L46, R40, R41, R42, R43, R44, R45, R46 \
30 ) \
31 KEYMAP( \
32 KC_##L00, KC_##L01, KC_##L02, KC_##L03, KC_##L04, KC_##L05, KC_##L06, KC_##R00, KC_##R01, KC_##R02, KC_##R03, KC_##R04, KC_##R05, KC_##R06, \
33 KC_##L10, KC_##L11, KC_##L12, KC_##L13, KC_##L14, KC_##L15, KC_##L16, KC_##R10, KC_##R11, KC_##R12, KC_##R13, KC_##R14, KC_##R15, KC_##R16, \
34 KC_##L20, KC_##L21, KC_##L22, KC_##L23, KC_##L24, KC_##L25, KC_##L26, KC_##R20, KC_##R21, KC_##R22, KC_##R23, KC_##R24, KC_##R25, KC_##R26, \
35 KC_##L30, KC_##L31, KC_##L32, KC_##L33, KC_##L34, KC_##L35, KC_##L36, KC_##R30, KC_##R31, KC_##R32, KC_##R33, KC_##R34, KC_##R35, KC_##R36, \
36 KC_##L40, KC_##L41, KC_##L42, KC_##L43, KC_##L44, KC_##L45, KC_##L46, KC_##R40, KC_##R41, KC_##R42, KC_##R43, KC_##R44, KC_##R45, KC_##R46 \
37 )
38
39#include "quantum.h"
40
41#endif
diff --git a/keyboards/redox/rev1/config.h b/keyboards/redox/rev1/config.h
new file mode 100644
index 000000000..f8041f235
--- /dev/null
+++ b/keyboards/redox/rev1/config.h
@@ -0,0 +1,88 @@
1/*
2Copyright 2018 Mattia Dal Ben <matthewdibi@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#ifndef REV1_CONFIG_H
19#define REV1_CONFIG_H
20
21#include "config_common.h"
22
23/* USB Device descriptor parameter */
24#define VENDOR_ID 0xFEED
25#define PRODUCT_ID 0x0000
26#define DEVICE_VER 0x0100
27#define MANUFACTURER Falbatech
28#define PRODUCT The Redox Keyboard
29#define DESCRIPTION Split Ergodox-like 5x7 custom keyboard
30
31/* key matrix size */
32// Rows are doubled-up
33#define MATRIX_ROWS 10
34#define MATRIX_COLS 7
35
36// wiring of each half
37#define MATRIX_ROW_PINS { D4, D7, E6, B4, B5 }
38#define MATRIX_COL_PINS { F5, F6, F7, B1, B3, B2, B6 }
39// #define MATRIX_COL_PINS { B6, B2, B3, B1, F7, F6, F5} //uncomment this line and comment line above if you need to reverse left-to-right key order
40
41/* COL2ROW or ROW2COL */
42#define DIODE_DIRECTION COL2ROW
43
44/* define if matrix has ghost */
45//#define MATRIX_HAS_GHOST
46
47/* number of backlight levels */
48// #define BACKLIGHT_LEVELS 3
49
50/* Set 0 if debouncing isn't needed */
51#define DEBOUNCING_DELAY 5
52
53/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
54#define LOCKING_SUPPORT_ENABLE
55/* Locking resynchronize hack */
56#define LOCKING_RESYNC_ENABLE
57
58/* key combination for command */
59#define IS_COMMAND() ( \
60 keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
61)
62
63/* ws2812 RGB LED */
64#define RGB_DI_PIN D3
65#define RGBLIGHT_TIMER
66#define RGBLED_NUM 14 // Number of LEDs
67#define ws2812_PORTREG PORTD
68#define ws2812_DDRREG DDRD
69
70/*
71 * Feature disable options
72 * These options are also useful to firmware size reduction.
73 */
74
75/* disable debug print */
76// #define NO_DEBUG
77
78/* disable print */
79// #define NO_PRINT
80
81/* disable action features */
82//#define NO_ACTION_LAYER
83//#define NO_ACTION_TAPPING
84//#define NO_ACTION_ONESHOT
85//#define NO_ACTION_MACRO
86//#define NO_ACTION_FUNCTION
87
88#endif
diff --git a/keyboards/redox/rev1/rev1.c b/keyboards/redox/rev1/rev1.c
new file mode 100644
index 000000000..2eb7c7c0e
--- /dev/null
+++ b/keyboards/redox/rev1/rev1.c
@@ -0,0 +1,22 @@
1#include "redox.h"
2
3
4#ifdef SSD1306OLED
5void led_set_kb(uint8_t usb_led) {
6 // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
7 led_set_user(usb_led);
8}
9#endif
10
11void matrix_init_kb(void) {
12
13 // // green led on
14 // DDRD |= (1<<5);
15 // PORTD &= ~(1<<5);
16
17 // // orange led on
18 // DDRB |= (1<<0);
19 // PORTB &= ~(1<<0);
20
21 matrix_init_user();
22};
diff --git a/keyboards/redox/rev1/rev1.h b/keyboards/redox/rev1/rev1.h
new file mode 100644
index 000000000..be6224750
--- /dev/null
+++ b/keyboards/redox/rev1/rev1.h
@@ -0,0 +1,66 @@
1#ifndef REV1_H
2#define REV1_H
3
4#include "../redox.h"
5
6//void promicro_bootloader_jmp(bool program);
7#include "quantum.h"
8
9
10#ifdef USE_I2C
11#include <stddef.h>
12#ifdef __AVR__
13 #include <avr/io.h>
14 #include <avr/interrupt.h>
15#endif
16#endif
17
18//void promicro_bootloader_jmp(bool program);
19
20#ifndef FLIP_HALF
21// Standard Keymap
22// (TRRS jack on the left half is to the right, TRRS jack on the right half is to the left)
23#define LAYOUT( \
24 L00, L01, L02, L03, L04, L05, L06, R00, R01, R02, R03, R04, R05, R06, \
25 L10, L11, L12, L13, L14, L15, L16, R10, R11, R12, R13, R14, R15, R16, \
26 L20, L21, L22, L23, L24, L25, L26, R20, R21, R22, R23, R24, R25, R26, \
27 L30, L31, L32, L33, L34, L35, L36, R30, R31, R32, R33, R34, R35, R36, \
28 L40, L41, L42, L43, L44, L45, L46, R40, R41, R42, R43, R44, R45, R46 \
29 ) \
30 { \
31 { L00, L01, L02, L03, L04, L05, L06 }, \
32 { L10, L11, L12, L13, L14, L15, L16 }, \
33 { L20, L21, L22, L23, L24, L25, L26 }, \
34 { L30, L31, L32, L33, L34, L35, L36 }, \
35 { L40, L41, L42, L43, L44, L45, L46 }, \
36 { R06, R05, R04, R03, R02, R01, R00 }, \
37 { R16, R15, R14, R13, R12, R11, R10 }, \
38 { R26, R25, R24, R23, R22, R21, R20 }, \
39 { R36, R35, R34, R33, R32, R31, R30 }, \
40 { R46, R45, R44, R43, R42, R41, R40 } \
41 }
42#else
43// Keymap with right side flipped
44// (TRRS jack on both halves are to the right)
45#define LAYOUT( \
46 L00, L01, L02, L03, L04, L05, L06, R00, R01, R02, R03, R04, R05, R06, \
47 L10, L11, L12, L13, L14, L15, L16, R10, R11, R12, R13, R14, R15, R16, \
48 L20, L21, L22, L23, L24, L25, L26, R20, R21, R22, R23, R24, R25, R26, \
49 L30, L31, L32, L33, L34, L35, L36, R30, R31, R32, R33, R34, R35, R36, \
50 L40, L41, L42, L43, L44, L45, L46, R40, R41, R42, R43, R44, R45, R46 \
51 ) \
52 { \
53 { L00, L01, L02, L03, L04, L05, L06 }, \
54 { L10, L11, L12, L13, L14, L15, L16 }, \
55 { L20, L21, L22, L23, L24, L25, L26 }, \
56 { L30, L31, L32, L33, L34, L35, L36 }, \
57 { L40, L41, L42, L43, L44, L45, L46 }, \
58 { R00, R01, R02, R03, R04, R05, R06 }, \
59 { R10, R11, R12, R13, R14, R15, R16 }, \
60 { R20, R21, R22, R23, R24, R25, R26 }, \
61 { R30, R31, R32, R33, R34, R35, R36 }, \
62 { R40, R41, R42, R43, R44, R45, R46 } \
63 }
64#endif
65
66#endif
diff --git a/keyboards/redox/rev1/rules.mk b/keyboards/redox/rev1/rules.mk
new file mode 100644
index 000000000..f84561674
--- /dev/null
+++ b/keyboards/redox/rev1/rules.mk
@@ -0,0 +1 @@
BACKLIGHT_ENABLE = no \ No newline at end of file
diff --git a/keyboards/redox/rules.mk b/keyboards/redox/rules.mk
new file mode 100644
index 000000000..3e79bf1fe
--- /dev/null
+++ b/keyboards/redox/rules.mk
@@ -0,0 +1,80 @@
1SRC += matrix.c \
2 i2c.c \
3 split_util.c \
4 serial.c
5
6# MCU name
7#MCU = at90usb1286
8MCU = atmega32u4
9
10# Processor frequency.
11# This will define a symbol, F_CPU, in all source code files equal to the
12# processor frequency in Hz. You can then use this symbol in your source code to
13# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
14# automatically to create a 32-bit value in your source code.
15#
16# This will be an integer division of F_USB below, as it is sourced by
17# F_USB after it has run through any CPU prescalers. Note that this value
18# does not *change* the processor frequency - it should merely be updated to
19# reflect the processor speed set externally so that the code can use accurate
20# software delays.
21F_CPU = 16000000
22
23
24#
25# LUFA specific
26#
27# Target architecture (see library "Board Types" documentation).
28ARCH = AVR8
29
30# Input clock frequency.
31# This will define a symbol, F_USB, in all source code files equal to the
32# input clock frequency (before any prescaling is performed) in Hz. This value may
33# differ from F_CPU if prescaling is used on the latter, and is required as the
34# raw input clock is fed directly to the PLL sections of the AVR for high speed
35# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
36# at the end, this will be done automatically to create a 32-bit value in your
37# source code.
38#
39# If no clock division is performed on the input clock inside the AVR (via the
40# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
41F_USB = $(F_CPU)
42
43# Interrupt driven control endpoint task(+60)
44OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
45
46
47# Boot Section Size in *bytes*
48# Teensy halfKay 512
49# Teensy++ halfKay 1024
50# Atmel DFU loader 4096
51# LUFA bootloader 4096
52# USBaspLoader 2048
53OPT_DEFS += -DBOOTLOADER_SIZE=4096
54
55
56# Build Options
57# change yes to no to disable
58#
59BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
60MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
61EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
62CONSOLE_ENABLE = no # Console for debug(+400)
63COMMAND_ENABLE = yes # Commands for debug and configuration
64# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
65SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
66# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
67NKRO_ENABLE = no # USB Nkey Rollover
68BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default
69MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config)
70UNICODE_ENABLE = no # Unicode
71BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
72AUDIO_ENABLE = no # Audio output on port C6
73FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
74RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
75SUBPROJECT_rev1 = yes
76USE_I2C = yes
77
78CUSTOM_MATRIX = yes
79
80DEFAULT_FOLDER = redox/rev1
diff --git a/keyboards/redox/serial.c b/keyboards/redox/serial.c
new file mode 100644
index 000000000..6faed09ce
--- /dev/null
+++ b/keyboards/redox/serial.c
@@ -0,0 +1,228 @@
1/*
2 * WARNING: be careful changing this code, it is very timing dependent
3 */
4
5#ifndef F_CPU
6#define F_CPU 16000000
7#endif
8
9#include <avr/io.h>
10#include <avr/interrupt.h>
11#include <util/delay.h>
12#include <stdbool.h>
13#include "serial.h"
14
15#ifdef USE_SERIAL
16
17// Serial pulse period in microseconds. Its probably a bad idea to lower this
18// value.
19#define SERIAL_DELAY 24
20
21uint8_t volatile serial_slave_buffer[SERIAL_SLAVE_BUFFER_LENGTH] = {0};
22uint8_t volatile serial_master_buffer[SERIAL_MASTER_BUFFER_LENGTH] = {0};
23
24#define SLAVE_DATA_CORRUPT (1<<0)
25volatile uint8_t status = 0;
26
27inline static
28void serial_delay(void) {
29 _delay_us(SERIAL_DELAY);
30}
31
32inline static
33void serial_output(void) {
34 SERIAL_PIN_DDR |= SERIAL_PIN_MASK;
35}
36
37// make the serial pin an input with pull-up resistor
38inline static
39void serial_input(void) {
40 SERIAL_PIN_DDR &= ~SERIAL_PIN_MASK;
41 SERIAL_PIN_PORT |= SERIAL_PIN_MASK;
42}
43
44inline static
45uint8_t serial_read_pin(void) {
46 return !!(SERIAL_PIN_INPUT & SERIAL_PIN_MASK);
47}
48
49inline static
50void serial_low(void) {
51 SERIAL_PIN_PORT &= ~SERIAL_PIN_MASK;
52}
53
54inline static
55void serial_high(void) {
56 SERIAL_PIN_PORT |= SERIAL_PIN_MASK;
57}
58
59void serial_master_init(void) {
60 serial_output();
61 serial_high();
62}
63
64void serial_slave_init(void) {
65 serial_input();
66
67 // Enable INT0
68 EIMSK |= _BV(INT0);
69 // Trigger on falling edge of INT0
70 EICRA &= ~(_BV(ISC00) | _BV(ISC01));
71}
72
73// Used by the master to synchronize timing with the slave.
74static
75void sync_recv(void) {
76 serial_input();
77 // This shouldn't hang if the slave disconnects because the
78 // serial line will float to high if the slave does disconnect.
79 while (!serial_read_pin());
80 serial_delay();
81}
82
83// Used by the slave to send a synchronization signal to the master.
84static
85void sync_send(void) {
86 serial_output();
87
88 serial_low();
89 serial_delay();
90
91 serial_high();
92}
93
94// Reads a byte from the serial line
95static
96uint8_t serial_read_byte(void) {
97 uint8_t byte = 0;
98 serial_input();
99 for ( uint8_t i = 0; i < 8; ++i) {
100 byte = (byte << 1) | serial_read_pin();
101 serial_delay();
102 _delay_us(1);
103 }
104
105 return byte;
106}
107
108// Sends a byte with MSB ordering
109static
110void serial_write_byte(uint8_t data) {
111 uint8_t b = 8;
112 serial_output();
113 while( b-- ) {
114 if(data & (1 << b)) {
115 serial_high();
116 } else {
117 serial_low();
118 }
119 serial_delay();
120 }
121}
122
123// interrupt handle to be used by the slave device
124ISR(SERIAL_PIN_INTERRUPT) {
125 sync_send();
126
127 uint8_t checksum = 0;
128 for (int i = 0; i < SERIAL_SLAVE_BUFFER_LENGTH; ++i) {
129 serial_write_byte(serial_slave_buffer[i]);
130 sync_send();
131 checksum += serial_slave_buffer[i];
132 }
133 serial_write_byte(checksum);
134 sync_send();
135
136 // wait for the sync to finish sending
137 serial_delay();
138
139 // read the middle of pulses
140 _delay_us(SERIAL_DELAY/2);
141
142 uint8_t checksum_computed = 0;
143 for (int i = 0; i < SERIAL_MASTER_BUFFER_LENGTH; ++i) {
144 serial_master_buffer[i] = serial_read_byte();
145 sync_send();
146 checksum_computed += serial_master_buffer[i];
147 }
148 uint8_t checksum_received = serial_read_byte();
149 sync_send();
150
151 serial_input(); // end transaction
152
153 if ( checksum_computed != checksum_received ) {
154 status |= SLAVE_DATA_CORRUPT;
155 } else {
156 status &= ~SLAVE_DATA_CORRUPT;
157 }
158}
159
160inline
161bool serial_slave_DATA_CORRUPT(void) {
162 return status & SLAVE_DATA_CORRUPT;
163}
164
165// Copies the serial_slave_buffer to the master and sends the
166// serial_master_buffer to the slave.
167//
168// Returns:
169// 0 => no error
170// 1 => slave did not respond
171int serial_update_buffers(void) {
172 // this code is very time dependent, so we need to disable interrupts
173 cli();
174
175 // signal to the slave that we want to start a transaction
176 serial_output();
177 serial_low();
178 _delay_us(1);
179
180 // wait for the slaves response
181 serial_input();
182 serial_high();
183 _delay_us(SERIAL_DELAY);
184
185 // check if the slave is present
186 if (serial_read_pin()) {
187 // slave failed to pull the line low, assume not present
188 sei();
189 return 1;
190 }
191
192 // if the slave is present syncronize with it
193 sync_recv();
194
195 uint8_t checksum_computed = 0;
196 // receive data from the slave
197 for (int i = 0; i < SERIAL_SLAVE_BUFFER_LENGTH; ++i) {
198 serial_slave_buffer[i] = serial_read_byte();
199 sync_recv();
200 checksum_computed += serial_slave_buffer[i];
201 }
202 uint8_t checksum_received = serial_read_byte();
203 sync_recv();
204
205 if (checksum_computed != checksum_received) {
206 sei();
207 return 1;
208 }
209
210 uint8_t checksum = 0;
211 // send data to the slave
212 for (int i = 0; i < SERIAL_MASTER_BUFFER_LENGTH; ++i) {
213 serial_write_byte(serial_master_buffer[i]);
214 sync_recv();
215 checksum += serial_master_buffer[i];
216 }
217 serial_write_byte(checksum);
218 sync_recv();
219
220 // always, release the line when not in use
221 serial_output();
222 serial_high();
223
224 sei();
225 return 0;
226}
227
228#endif
diff --git a/keyboards/redox/serial.h b/keyboards/redox/serial.h
new file mode 100644
index 000000000..15fe4db7b
--- /dev/null
+++ b/keyboards/redox/serial.h
@@ -0,0 +1,26 @@
1#ifndef MY_SERIAL_H
2#define MY_SERIAL_H
3
4#include "config.h"
5#include <stdbool.h>
6
7/* TODO: some defines for interrupt setup */
8#define SERIAL_PIN_DDR DDRD
9#define SERIAL_PIN_PORT PORTD
10#define SERIAL_PIN_INPUT PIND
11#define SERIAL_PIN_MASK _BV(PD0)
12#define SERIAL_PIN_INTERRUPT INT0_vect
13
14#define SERIAL_SLAVE_BUFFER_LENGTH MATRIX_ROWS/2
15#define SERIAL_MASTER_BUFFER_LENGTH 1
16
17// Buffers for master - slave communication
18extern volatile uint8_t serial_slave_buffer[SERIAL_SLAVE_BUFFER_LENGTH];
19extern volatile uint8_t serial_master_buffer[SERIAL_MASTER_BUFFER_LENGTH];
20
21void serial_master_init(void);
22void serial_slave_init(void);
23int serial_update_buffers(void);
24bool serial_slave_data_corrupt(void);
25
26#endif
diff --git a/keyboards/redox/split_util.c b/keyboards/redox/split_util.c
new file mode 100644
index 000000000..346cbc908
--- /dev/null
+++ b/keyboards/redox/split_util.c
@@ -0,0 +1,86 @@
1#include <avr/io.h>
2#include <avr/wdt.h>
3#include <avr/power.h>
4#include <avr/interrupt.h>
5#include <util/delay.h>
6#include <avr/eeprom.h>
7#include "split_util.h"
8#include "matrix.h"
9#include "keyboard.h"
10#include "config.h"
11#include "timer.h"
12
13#ifdef USE_I2C
14# include "i2c.h"
15#else
16# include "serial.h"
17#endif
18
19volatile bool isLeftHand = true;
20
21static void setup_handedness(void) {
22 #ifdef EE_HANDS
23 isLeftHand = eeprom_read_byte(EECONFIG_HANDEDNESS);
24 #else
25 // I2C_MASTER_RIGHT is deprecated, use MASTER_RIGHT instead, since this works for both serial and i2c
26 #if defined(I2C_MASTER_RIGHT) || defined(MASTER_RIGHT)
27 isLeftHand = !has_usb();
28 #else
29 isLeftHand = has_usb();
30 #endif
31 #endif
32}
33
34static void keyboard_master_setup(void) {
35#ifdef USE_I2C
36 i2c_master_init();
37#ifdef SSD1306OLED
38 matrix_master_OLED_init ();
39#endif
40#else
41 serial_master_init();
42#endif
43}
44
45static void keyboard_slave_setup(void) {
46 timer_init();
47#ifdef USE_I2C
48 i2c_slave_init(SLAVE_I2C_ADDRESS);
49#else
50 serial_slave_init();
51#endif
52}
53
54bool has_usb(void) {
55 USBCON |= (1 << OTGPADE); //enables VBUS pad
56 _delay_us(5);
57 return (USBSTA & (1<<VBUS)); //checks state of VBUS
58}
59
60void split_keyboard_setup(void) {
61 setup_handedness();
62
63 if (has_usb()) {
64 keyboard_master_setup();
65 } else {
66 keyboard_slave_setup();
67 }
68 sei();
69}
70
71void keyboard_slave_loop(void) {
72 matrix_init();
73
74 while (1) {
75 matrix_slave_scan();
76 }
77}
78
79// this code runs before the usb and keyboard is initialized
80void matrix_setup(void) {
81 split_keyboard_setup();
82
83 if (!has_usb()) {
84 keyboard_slave_loop();
85 }
86}
diff --git a/keyboards/redox/split_util.h b/keyboards/redox/split_util.h
new file mode 100644
index 000000000..a0a8dd3bf
--- /dev/null
+++ b/keyboards/redox/split_util.h
@@ -0,0 +1,21 @@
1#ifndef SPLIT_KEYBOARD_UTIL_H
2#define SPLIT_KEYBOARD_UTIL_H
3
4#include <stdbool.h>
5#include "eeconfig.h"
6
7
8#define SLAVE_I2C_ADDRESS 0x32
9
10extern volatile bool isLeftHand;
11
12// slave version of matix scan, defined in matrix.c
13void matrix_slave_scan(void);
14
15void split_keyboard_setup(void);
16bool has_usb(void);
17void keyboard_slave_loop(void);
18
19void matrix_master_OLED_init (void);
20
21#endif