diff options
| author | Danny <nooges@users.noreply.github.com> | 2019-02-08 18:33:27 -0500 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-02-08 15:33:27 -0800 |
| commit | 6fa0c48563088abcd8718b5413187c1f3222cccc (patch) | |
| tree | 54f61a35c471cbb030da036a94622d71d2bf5e2f | |
| parent | bcb18154206332c85e500ef65bffa98be6ac1cb7 (diff) | |
| download | qmk_firmware-6fa0c48563088abcd8718b5413187c1f3222cccc.tar.gz qmk_firmware-6fa0c48563088abcd8718b5413187c1f3222cccc.zip | |
Convert Viterbi to use split_common, add rev2 (#5085)
* Convert Viterbi to use split_common, add rev2
* Update keyboards/viterbi/rev2/config.h
Co-Authored-By: nooges <nooges@users.noreply.github.com>
* Update keyboards/viterbi/rev2/config.h
Co-Authored-By: nooges <nooges@users.noreply.github.com>
| -rw-r--r-- | keyboards/viterbi/config.h | 2 | ||||
| -rw-r--r-- | keyboards/viterbi/i2c.c | 162 | ||||
| -rw-r--r-- | keyboards/viterbi/i2c.h | 49 | ||||
| -rw-r--r-- | keyboards/viterbi/keymaps/default/config.h | 11 | ||||
| -rw-r--r-- | keyboards/viterbi/keymaps/default/keymap.c | 4 | ||||
| -rw-r--r-- | keyboards/viterbi/matrix.c | 454 | ||||
| -rw-r--r-- | keyboards/viterbi/rev1/config.h | 30 | ||||
| -rw-r--r-- | keyboards/viterbi/rev2/config.h | 57 | ||||
| -rw-r--r-- | keyboards/viterbi/rev2/rev2.c | 1 | ||||
| -rw-r--r-- | keyboards/viterbi/rev2/rev2.h | 35 | ||||
| -rw-r--r-- | keyboards/viterbi/rev2/rules.mk | 3 | ||||
| -rw-r--r-- | keyboards/viterbi/rules.mk | 50 | ||||
| -rw-r--r-- | keyboards/viterbi/serial.c | 228 | ||||
| -rw-r--r-- | keyboards/viterbi/serial.h | 26 | ||||
| -rw-r--r-- | keyboards/viterbi/split_util.c | 86 | ||||
| -rw-r--r-- | keyboards/viterbi/split_util.h | 21 | ||||
| -rw-r--r-- | keyboards/viterbi/viterbi.h | 10 |
17 files changed, 110 insertions, 1119 deletions
diff --git a/keyboards/viterbi/config.h b/keyboards/viterbi/config.h index 863722d7d..27a7d9e1a 100644 --- a/keyboards/viterbi/config.h +++ b/keyboards/viterbi/config.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | Copyright 2017 Danny Nguyen <danny@hexwire.com> | 2 | Copyright 2019 Danny Nguyen <danny@keeb.io> |
| 3 | 3 | ||
| 4 | This program is free software: you can redistribute it and/or modify | 4 | This program is free software: you can redistribute it and/or modify |
| 5 | it under the terms of the GNU General Public License as published by | 5 | it under the terms of the GNU General Public License as published by |
diff --git a/keyboards/viterbi/i2c.c b/keyboards/viterbi/i2c.c deleted file mode 100644 index 084c890c4..000000000 --- a/keyboards/viterbi/i2c.c +++ /dev/null | |||
| @@ -1,162 +0,0 @@ | |||
| 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 | |||
| 21 | volatile uint8_t i2c_slave_buffer[SLAVE_BUFFER_SIZE]; | ||
| 22 | |||
| 23 | static volatile uint8_t slave_buffer_pos; | ||
| 24 | static volatile bool slave_has_register_set = false; | ||
| 25 | |||
| 26 | // Wait for an i2c operation to finish | ||
| 27 | inline static | ||
| 28 | void 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 | ||
| 38 | void 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 | ||
| 50 | uint8_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. | ||
| 72 | void 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 | ||
| 83 | uint8_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 | ||
| 96 | uint8_t i2c_master_read(int ack) { | ||
| 97 | TWCR = (1<<TWINT) | (1<<TWEN) | (ack<<TWEA); | ||
| 98 | |||
| 99 | i2c_delay(); | ||
| 100 | return TWDR; | ||
| 101 | } | ||
| 102 | |||
| 103 | void i2c_reset_state(void) { | ||
| 104 | TWCR = 0; | ||
| 105 | } | ||
| 106 | |||
| 107 | void 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 | |||
| 116 | ISR(TWI_vect); | ||
| 117 | |||
| 118 | ISR(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/viterbi/i2c.h b/keyboards/viterbi/i2c.h deleted file mode 100644 index 43e596988..000000000 --- a/keyboards/viterbi/i2c.h +++ /dev/null | |||
| @@ -1,49 +0,0 @@ | |||
| 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 | |||
| 21 | extern volatile uint8_t i2c_slave_buffer[SLAVE_BUFFER_SIZE]; | ||
| 22 | |||
| 23 | void i2c_master_init(void); | ||
| 24 | uint8_t i2c_master_start(uint8_t address); | ||
| 25 | void i2c_master_stop(void); | ||
| 26 | uint8_t i2c_master_write(uint8_t data); | ||
| 27 | uint8_t i2c_master_read(int); | ||
| 28 | void i2c_reset_state(void); | ||
| 29 | void i2c_slave_init(uint8_t address); | ||
| 30 | |||
| 31 | |||
| 32 | static inline unsigned char i2c_start_read(unsigned char addr) { | ||
| 33 | return i2c_master_start((addr << 1) | I2C_READ); | ||
| 34 | } | ||
| 35 | |||
| 36 | static inline unsigned char i2c_start_write(unsigned char addr) { | ||
| 37 | return i2c_master_start((addr << 1) | I2C_WRITE); | ||
| 38 | } | ||
| 39 | |||
| 40 | // from SSD1306 scrips | ||
| 41 | extern unsigned char i2c_rep_start(unsigned char addr); | ||
| 42 | extern void i2c_start_wait(unsigned char addr); | ||
| 43 | extern unsigned char i2c_readAck(void); | ||
| 44 | extern unsigned char i2c_readNak(void); | ||
| 45 | extern 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/viterbi/keymaps/default/config.h b/keyboards/viterbi/keymaps/default/config.h index dabff8f96..a841066f4 100644 --- a/keyboards/viterbi/keymaps/default/config.h +++ b/keyboards/viterbi/keymaps/default/config.h | |||
| @@ -15,19 +15,12 @@ You should have received a copy of the GNU General Public License | |||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ | 16 | */ |
| 17 | 17 | ||
| 18 | #ifndef CONFIG_USER_H | 18 | #pragma once |
| 19 | #define CONFIG_USER_H | ||
| 20 | 19 | ||
| 21 | #include "../../config.h" | ||
| 22 | |||
| 23 | /* Use I2C or Serial, not both */ | ||
| 24 | |||
| 25 | #define USE_SERIAL | ||
| 26 | // #define USE_I2C | 20 | // #define USE_I2C |
| 27 | 21 | ||
| 28 | /* Select hand configuration */ | 22 | /* Select hand configuration */ |
| 29 | 23 | ||
| 30 | #define MASTER_LEFT | ||
| 31 | // #define MASTER_RIGHT | 24 | // #define MASTER_RIGHT |
| 32 | // #define EE_HANDS | 25 | // #define EE_HANDS |
| 33 | 26 | ||
| @@ -37,5 +30,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 37 | #define RGBLIGHT_HUE_STEP 8 | 30 | #define RGBLIGHT_HUE_STEP 8 |
| 38 | #define RGBLIGHT_SAT_STEP 8 | 31 | #define RGBLIGHT_SAT_STEP 8 |
| 39 | #define RGBLIGHT_VAL_STEP 8 | 32 | #define RGBLIGHT_VAL_STEP 8 |
| 40 | |||
| 41 | #endif | ||
diff --git a/keyboards/viterbi/keymaps/default/keymap.c b/keyboards/viterbi/keymaps/default/keymap.c index eee207c94..3db912f6a 100644 --- a/keyboards/viterbi/keymaps/default/keymap.c +++ b/keyboards/viterbi/keymaps/default/keymap.c | |||
| @@ -1,6 +1,4 @@ | |||
| 1 | #include "viterbi.h" | 1 | #include QMK_KEYBOARD_H |
| 2 | #include "action_layer.h" | ||
| 3 | #include "eeconfig.h" | ||
| 4 | 2 | ||
| 5 | extern keymap_config_t keymap_config; | 3 | extern keymap_config_t keymap_config; |
| 6 | 4 | ||
diff --git a/keyboards/viterbi/matrix.c b/keyboards/viterbi/matrix.c deleted file mode 100644 index c56b49c5f..000000000 --- a/keyboards/viterbi/matrix.c +++ /dev/null | |||
| @@ -1,454 +0,0 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2017 Danny Nguyen <danny@hexwire.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along 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 | ||
| 57 | static matrix_row_t matrix_debouncing[MATRIX_ROWS]; | ||
| 58 | |||
| 59 | #define ERROR_DISCONNECT_COUNT 5 | ||
| 60 | |||
| 61 | #define ROWS_PER_HAND (MATRIX_ROWS/2) | ||
| 62 | |||
| 63 | static uint8_t error_count = 0; | ||
| 64 | |||
| 65 | static const uint8_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS; | ||
| 66 | static const uint8_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS; | ||
| 67 | |||
| 68 | /* matrix state(1:on, 0:off) */ | ||
| 69 | static matrix_row_t matrix[MATRIX_ROWS]; | ||
| 70 | static 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)) | ||
| 87 | void matrix_init_kb(void) { | ||
| 88 | matrix_init_user(); | ||
| 89 | } | ||
| 90 | |||
| 91 | __attribute__ ((weak)) | ||
| 92 | void matrix_scan_kb(void) { | ||
| 93 | matrix_scan_user(); | ||
| 94 | } | ||
| 95 | |||
| 96 | __attribute__ ((weak)) | ||
| 97 | void matrix_init_user(void) { | ||
| 98 | } | ||
| 99 | |||
| 100 | __attribute__ ((weak)) | ||
| 101 | void matrix_scan_user(void) { | ||
| 102 | } | ||
| 103 | |||
| 104 | inline | ||
| 105 | uint8_t matrix_rows(void) | ||
| 106 | { | ||
| 107 | return MATRIX_ROWS; | ||
| 108 | } | ||
| 109 | |||
| 110 | inline | ||
| 111 | uint8_t matrix_cols(void) | ||
| 112 | { | ||
| 113 | return MATRIX_COLS; | ||
| 114 | } | ||
| 115 | |||
| 116 | void 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 | |||
| 137 | uint8_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 | } | ||
| 150 | |||
| 151 | # else | ||
| 152 | read_cols_on_row(matrix+offset, current_row); | ||
| 153 | # endif | ||
| 154 | |||
| 155 | } | ||
| 156 | |||
| 157 | #elif (DIODE_DIRECTION == ROW2COL) | ||
| 158 | // Set col, read rows | ||
| 159 | for (uint8_t current_col = 0; current_col < MATRIX_COLS; current_col++) { | ||
| 160 | # if (DEBOUNCING_DELAY > 0) | ||
| 161 | bool matrix_changed = read_rows_on_col(matrix_debouncing+offset, current_col); | ||
| 162 | if (matrix_changed) { | ||
| 163 | debouncing = true; | ||
| 164 | debouncing_time = timer_read(); | ||
| 165 | } | ||
| 166 | # else | ||
| 167 | read_rows_on_col(matrix+offset, current_col); | ||
| 168 | # endif | ||
| 169 | |||
| 170 | } | ||
| 171 | #endif | ||
| 172 | |||
| 173 | # if (DEBOUNCING_DELAY > 0) | ||
| 174 | if (debouncing && (timer_elapsed(debouncing_time) > DEBOUNCING_DELAY)) { | ||
| 175 | for (uint8_t i = 0; i < ROWS_PER_HAND; i++) { | ||
| 176 | matrix[i+offset] = matrix_debouncing[i+offset]; | ||
| 177 | } | ||
| 178 | debouncing = false; | ||
| 179 | } | ||
| 180 | # endif | ||
| 181 | |||
| 182 | return 1; | ||
| 183 | } | ||
| 184 | |||
| 185 | #ifdef USE_I2C | ||
| 186 | |||
| 187 | // Get rows from other half over i2c | ||
| 188 | int i2c_transaction(void) { | ||
| 189 | int slaveOffset = (isLeftHand) ? (ROWS_PER_HAND) : 0; | ||
| 190 | |||
| 191 | int err = i2c_master_start(SLAVE_I2C_ADDRESS + I2C_WRITE); | ||
| 192 | if (err) goto i2c_error; | ||
| 193 | |||
| 194 | // start of matrix stored at 0x00 | ||
| 195 | err = i2c_master_write(0x00); | ||
| 196 | if (err) goto i2c_error; | ||
| 197 | |||
| 198 | // Start read | ||
| 199 | err = i2c_master_start(SLAVE_I2C_ADDRESS + I2C_READ); | ||
| 200 | if (err) goto i2c_error; | ||
| 201 | |||
| 202 | if (!err) { | ||
| 203 | int i; | ||
| 204 | for (i = 0; i < ROWS_PER_HAND-1; ++i) { | ||
| 205 | matrix[slaveOffset+i] = i2c_master_read(I2C_ACK); | ||
| 206 | } | ||
| 207 | matrix[slaveOffset+i] = i2c_master_read(I2C_NACK); | ||
| 208 | i2c_master_stop(); | ||
| 209 | } else { | ||
| 210 | i2c_error: // the cable is disconnceted, or something else went wrong | ||
| 211 | i2c_reset_state(); | ||
| 212 | return err; | ||
| 213 | } | ||
| 214 | |||
| 215 | return 0; | ||
| 216 | } | ||
| 217 | |||
| 218 | #else // USE_SERIAL | ||
| 219 | |||
| 220 | int serial_transaction(void) { | ||
| 221 | int slaveOffset = (isLeftHand) ? (ROWS_PER_HAND) : 0; | ||
| 222 | |||
| 223 | if (serial_update_buffers()) { | ||
| 224 | return 1; | ||
| 225 | } | ||
| 226 | |||
| 227 | for (int i = 0; i < ROWS_PER_HAND; ++i) { | ||
| 228 | matrix[slaveOffset+i] = serial_slave_buffer[i]; | ||
| 229 | } | ||
| 230 | return 0; | ||
| 231 | } | ||
| 232 | #endif | ||
| 233 | |||
| 234 | uint8_t matrix_scan(void) | ||
| 235 | { | ||
| 236 | uint8_t ret = _matrix_scan(); | ||
| 237 | |||
| 238 | #ifdef USE_I2C | ||
| 239 | if( i2c_transaction() ) { | ||
| 240 | #else // USE_SERIAL | ||
| 241 | if( serial_transaction() ) { | ||
| 242 | #endif | ||
| 243 | // turn on the indicator led when halves are disconnected | ||
| 244 | TXLED1; | ||
| 245 | |||
| 246 | error_count++; | ||
| 247 | |||
| 248 | if (error_count > ERROR_DISCONNECT_COUNT) { | ||
| 249 | // reset other half if disconnected | ||
| 250 | int slaveOffset = (isLeftHand) ? (ROWS_PER_HAND) : 0; | ||
| 251 | for (int i = 0; i < ROWS_PER_HAND; ++i) { | ||
| 252 | matrix[slaveOffset+i] = 0; | ||
| 253 | } | ||
| 254 | } | ||
| 255 | } else { | ||
| 256 | // turn off the indicator led on no error | ||
| 257 | TXLED0; | ||
| 258 | error_count = 0; | ||
| 259 | } | ||
| 260 | matrix_scan_quantum(); | ||
| 261 | return ret; | ||
| 262 | } | ||
| 263 | |||
| 264 | void matrix_slave_scan(void) { | ||
| 265 | _matrix_scan(); | ||
| 266 | |||
| 267 | int offset = (isLeftHand) ? 0 : ROWS_PER_HAND; | ||
| 268 | |||
| 269 | #ifdef USE_I2C | ||
| 270 | for (int i = 0; i < ROWS_PER_HAND; ++i) { | ||
| 271 | i2c_slave_buffer[i] = matrix[offset+i]; | ||
| 272 | } | ||
| 273 | #else // USE_SERIAL | ||
| 274 | for (int i = 0; i < ROWS_PER_HAND; ++i) { | ||
| 275 | serial_slave_buffer[i] = matrix[offset+i]; | ||
| 276 | } | ||
| 277 | #endif | ||
| 278 | } | ||
| 279 | |||
| 280 | bool matrix_is_modified(void) | ||
| 281 | { | ||
| 282 | if (debouncing) return false; | ||
| 283 | return true; | ||
| 284 | } | ||
| 285 | |||
| 286 | inline | ||
| 287 | bool matrix_is_on(uint8_t row, uint8_t col) | ||
| 288 | { | ||
| 289 | return (matrix[row] & ((matrix_row_t)1<<col)); | ||
| 290 | } | ||
| 291 | |||
| 292 | inline | ||
| 293 | matrix_row_t matrix_get_row(uint8_t row) | ||
| 294 | { | ||
| 295 | return matrix[row]; | ||
| 296 | } | ||
| 297 | |||
| 298 | void matrix_print(void) | ||
| 299 | { | ||
| 300 | print("\nr/c 0123456789ABCDEF\n"); | ||
| 301 | for (uint8_t row = 0; row < MATRIX_ROWS; row++) { | ||
| 302 | phex(row); print(": "); | ||
| 303 | pbin_reverse16(matrix_get_row(row)); | ||
| 304 | print("\n"); | ||
| 305 | } | ||
| 306 | } | ||
| 307 | |||
| 308 | uint8_t matrix_key_count(void) | ||
| 309 | { | ||
| 310 | uint8_t count = 0; | ||
| 311 | for (uint8_t i = 0; i < MATRIX_ROWS; i++) { | ||
| 312 | count += bitpop16(matrix[i]); | ||
| 313 | } | ||
| 314 | return count; | ||
| 315 | } | ||
| 316 | |||
| 317 | #if (DIODE_DIRECTION == COL2ROW) | ||
| 318 | |||
| 319 | static void init_cols(void) | ||
| 320 | { | ||
| 321 | for(uint8_t x = 0; x < MATRIX_COLS; x++) { | ||
| 322 | uint8_t pin = col_pins[x]; | ||
| 323 | _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN | ||
| 324 | _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI | ||
| 325 | } | ||
| 326 | } | ||
| 327 | |||
| 328 | static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row) | ||
| 329 | { | ||
| 330 | // Store last value of row prior to reading | ||
| 331 | matrix_row_t last_row_value = current_matrix[current_row]; | ||
| 332 | |||
| 333 | // Clear data in matrix row | ||
| 334 | current_matrix[current_row] = 0; | ||
| 335 | |||
| 336 | // Select row and wait for row selecton to stabilize | ||
| 337 | select_row(current_row); | ||
| 338 | wait_us(30); | ||
| 339 | |||
| 340 | // For each col... | ||
| 341 | for(uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++) { | ||
| 342 | |||
| 343 | // Select the col pin to read (active low) | ||
| 344 | uint8_t pin = col_pins[col_index]; | ||
| 345 | uint8_t pin_state = (_SFR_IO8(pin >> 4) & _BV(pin & 0xF)); | ||
| 346 | |||
| 347 | // Populate the matrix row with the state of the col pin | ||
| 348 | current_matrix[current_row] |= pin_state ? 0 : (ROW_SHIFTER << col_index); | ||
| 349 | } | ||
| 350 | |||
| 351 | // Unselect row | ||
| 352 | unselect_row(current_row); | ||
| 353 | |||
| 354 | return (last_row_value != current_matrix[current_row]); | ||
| 355 | } | ||
| 356 | |||
| 357 | static void select_row(uint8_t row) | ||
| 358 | { | ||
| 359 | uint8_t pin = row_pins[row]; | ||
| 360 | _SFR_IO8((pin >> 4) + 1) |= _BV(pin & 0xF); // OUT | ||
| 361 | _SFR_IO8((pin >> 4) + 2) &= ~_BV(pin & 0xF); // LOW | ||
| 362 | } | ||
| 363 | |||
| 364 | static void unselect_row(uint8_t row) | ||
| 365 | { | ||
| 366 | uint8_t pin = row_pins[row]; | ||
| 367 | _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN | ||
| 368 | _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI | ||
| 369 | } | ||
| 370 | |||
| 371 | static void unselect_rows(void) | ||
| 372 | { | ||
| 373 | for(uint8_t x = 0; x < ROWS_PER_HAND; x++) { | ||
| 374 | uint8_t pin = row_pins[x]; | ||
| 375 | _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN | ||
| 376 | _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI | ||
| 377 | } | ||
| 378 | } | ||
| 379 | |||
| 380 | #elif (DIODE_DIRECTION == ROW2COL) | ||
| 381 | |||
| 382 | static void init_rows(void) | ||
| 383 | { | ||
| 384 | for(uint8_t x = 0; x < ROWS_PER_HAND; x++) { | ||
| 385 | uint8_t pin = row_pins[x]; | ||
| 386 | _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN | ||
| 387 | _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI | ||
| 388 | } | ||
| 389 | } | ||
| 390 | |||
| 391 | static bool read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col) | ||
| 392 | { | ||
| 393 | bool matrix_changed = false; | ||
| 394 | |||
| 395 | // Select col and wait for col selecton to stabilize | ||
| 396 | select_col(current_col); | ||
| 397 | wait_us(30); | ||
| 398 | |||
| 399 | // For each row... | ||
| 400 | for(uint8_t row_index = 0; row_index < ROWS_PER_HAND; row_index++) | ||
| 401 | { | ||
| 402 | |||
| 403 | // Store last value of row prior to reading | ||
| 404 | matrix_row_t last_row_value = current_matrix[row_index]; | ||
| 405 | |||
| 406 | // Check row pin state | ||
| 407 | if ((_SFR_IO8(row_pins[row_index] >> 4) & _BV(row_pins[row_index] & 0xF)) == 0) | ||
| 408 | { | ||
| 409 | // Pin LO, set col bit | ||
| 410 | current_matrix[row_index] |= (ROW_SHIFTER << current_col); | ||
| 411 | } | ||
| 412 | else | ||
| 413 | { | ||
| 414 | // Pin HI, clear col bit | ||
| 415 | current_matrix[row_index] &= ~(ROW_SHIFTER << current_col); | ||
| 416 | } | ||
| 417 | |||
| 418 | // Determine if the matrix changed state | ||
| 419 | if ((last_row_value != current_matrix[row_index]) && !(matrix_changed)) | ||
| 420 | { | ||
| 421 | matrix_changed = true; | ||
| 422 | } | ||
| 423 | } | ||
| 424 | |||
| 425 | // Unselect col | ||
| 426 | unselect_col(current_col); | ||
| 427 | |||
| 428 | return matrix_changed; | ||
| 429 | } | ||
| 430 | |||
| 431 | static void select_col(uint8_t col) | ||
| 432 | { | ||
| 433 | uint8_t pin = col_pins[col]; | ||
| 434 | _SFR_IO8((pin >> 4) + 1) |= _BV(pin & 0xF); // OUT | ||
| 435 | _SFR_IO8((pin >> 4) + 2) &= ~_BV(pin & 0xF); // LOW | ||
| 436 | } | ||
| 437 | |||
| 438 | static void unselect_col(uint8_t col) | ||
| 439 | { | ||
| 440 | uint8_t pin = col_pins[col]; | ||
| 441 | _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN | ||
| 442 | _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI | ||
| 443 | } | ||
| 444 | |||
| 445 | static void unselect_cols(void) | ||
| 446 | { | ||
| 447 | for(uint8_t x = 0; x < MATRIX_COLS; x++) { | ||
| 448 | uint8_t pin = col_pins[x]; | ||
| 449 | _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN | ||
| 450 | _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI | ||
| 451 | } | ||
| 452 | } | ||
| 453 | |||
| 454 | #endif | ||
diff --git a/keyboards/viterbi/rev1/config.h b/keyboards/viterbi/rev1/config.h index c7707fa0f..3b5e8fe66 100644 --- a/keyboards/viterbi/rev1/config.h +++ b/keyboards/viterbi/rev1/config.h | |||
| @@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 21 | #include "config_common.h" | 21 | #include "config_common.h" |
| 22 | 22 | ||
| 23 | /* USB Device descriptor parameter */ | 23 | /* USB Device descriptor parameter */ |
| 24 | #define VENDOR_ID 0xCEEB | 24 | #define VENDOR_ID 0xCB10 |
| 25 | #define PRODUCT_ID 0x1157 | 25 | #define PRODUCT_ID 0x1157 |
| 26 | #define DEVICE_VER 0x0100 | 26 | #define DEVICE_VER 0x0100 |
| 27 | #define MANUFACTURER Keebio | 27 | #define MANUFACTURER Keebio |
| @@ -36,16 +36,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 36 | // wiring of each half | 36 | // wiring of each half |
| 37 | #define MATRIX_ROW_PINS { D4, D7, E6, B4, B5 } | 37 | #define MATRIX_ROW_PINS { D4, D7, E6, B4, B5 } |
| 38 | #define MATRIX_COL_PINS { F5, F6, F7, B1, B3, B2, B6 } | 38 | #define MATRIX_COL_PINS { F5, F6, F7, B1, B3, B2, B6 } |
| 39 | #define SOFT_SERIAL_PIN D0 | ||
| 39 | 40 | ||
| 40 | /* COL2ROW or ROW2COL */ | 41 | /* COL2ROW or ROW2COL */ |
| 41 | #define DIODE_DIRECTION COL2ROW | 42 | #define DIODE_DIRECTION COL2ROW |
| 42 | 43 | ||
| 43 | /* define if matrix has ghost */ | ||
| 44 | //#define MATRIX_HAS_GHOST | ||
| 45 | |||
| 46 | /* number of backlight levels */ | ||
| 47 | // #define BACKLIGHT_LEVELS 3 | ||
| 48 | |||
| 49 | /* Set 0 if debouncing isn't needed */ | 44 | /* Set 0 if debouncing isn't needed */ |
| 50 | #define DEBOUNCING_DELAY 5 | 45 | #define DEBOUNCING_DELAY 5 |
| 51 | 46 | ||
| @@ -56,25 +51,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 56 | 51 | ||
| 57 | /* ws2812 RGB LED */ | 52 | /* ws2812 RGB LED */ |
| 58 | #define RGB_DI_PIN D3 | 53 | #define RGB_DI_PIN D3 |
| 59 | 54 | #define RGBLED_NUM 14 | |
| 60 | #define RGBLED_NUM 16 // Number of LEDs | ||
| 61 | |||
| 62 | /* | ||
| 63 | * Feature disable options | ||
| 64 | * These options are also useful to firmware size reduction. | ||
| 65 | */ | ||
| 66 | |||
| 67 | /* disable debug print */ | ||
| 68 | // #define NO_DEBUG | ||
| 69 | |||
| 70 | /* disable print */ | ||
| 71 | // #define NO_PRINT | ||
| 72 | |||
| 73 | /* disable action features */ | ||
| 74 | //#define NO_ACTION_LAYER | ||
| 75 | //#define NO_ACTION_TAPPING | ||
| 76 | //#define NO_ACTION_ONESHOT | ||
| 77 | //#define NO_ACTION_MACRO | ||
| 78 | //#define NO_ACTION_FUNCTION | ||
| 79 | 55 | ||
| 80 | #endif | 56 | #endif |
diff --git a/keyboards/viterbi/rev2/config.h b/keyboards/viterbi/rev2/config.h new file mode 100644 index 000000000..01a0bfa04 --- /dev/null +++ b/keyboards/viterbi/rev2/config.h | |||
| @@ -0,0 +1,57 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2017 Danny Nguyen <danny@hexwire.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #pragma once | ||
| 19 | |||
| 20 | |||
| 21 | /* USB Device descriptor parameter */ | ||
| 22 | #define VENDOR_ID 0xCB10 | ||
| 23 | #define PRODUCT_ID 0x1157 | ||
| 24 | #define DEVICE_VER 0x0200 | ||
| 25 | #define MANUFACTURER Keebio | ||
| 26 | #define PRODUCT The Viterbi Keyboard | ||
| 27 | #define DESCRIPTION Split 5x14 ortholinear keyboard | ||
| 28 | |||
| 29 | /* key matrix size */ | ||
| 30 | // Rows are doubled-up | ||
| 31 | #define MATRIX_ROWS 10 | ||
| 32 | #define MATRIX_COLS 7 | ||
| 33 | |||
| 34 | // wiring of each half | ||
| 35 | #define MATRIX_ROW_PINS { D4, D7, E6, B4, B5 } | ||
| 36 | #define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3, B2 } | ||
| 37 | #define SPLIT_HAND_PIN D2 | ||
| 38 | #define SOFT_SERIAL_PIN D0 | ||
| 39 | |||
| 40 | /* COL2ROW or ROW2COL */ | ||
| 41 | #define DIODE_DIRECTION COL2ROW | ||
| 42 | |||
| 43 | /* Set 0 if debouncing isn't needed */ | ||
| 44 | #define DEBOUNCING_DELAY 5 | ||
| 45 | |||
| 46 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 47 | #define LOCKING_SUPPORT_ENABLE | ||
| 48 | /* Locking resynchronize hack */ | ||
| 49 | #define LOCKING_RESYNC_ENABLE | ||
| 50 | |||
| 51 | /* ws2812 RGB LED */ | ||
| 52 | #define RGB_DI_PIN D3 | ||
| 53 | #define RGBLED_NUM 14 | ||
| 54 | |||
| 55 | /* Backlight LEDs */ | ||
| 56 | #define BACKLIGHT_PIN B6 | ||
| 57 | #define BACKLIGHT_LEVELS 7 | ||
diff --git a/keyboards/viterbi/rev2/rev2.c b/keyboards/viterbi/rev2/rev2.c new file mode 100644 index 000000000..509e42dc5 --- /dev/null +++ b/keyboards/viterbi/rev2/rev2.c | |||
| @@ -0,0 +1 @@ | |||
| #include "viterbi.h" | |||
diff --git a/keyboards/viterbi/rev2/rev2.h b/keyboards/viterbi/rev2/rev2.h new file mode 100644 index 000000000..599e6415a --- /dev/null +++ b/keyboards/viterbi/rev2/rev2.h | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include "viterbi.h" | ||
| 4 | #include "quantum.h" | ||
| 5 | |||
| 6 | |||
| 7 | #ifdef USE_I2C | ||
| 8 | #include <stddef.h> | ||
| 9 | #ifdef __AVR__ | ||
| 10 | #include <avr/io.h> | ||
| 11 | #include <avr/interrupt.h> | ||
| 12 | #endif | ||
| 13 | #endif | ||
| 14 | |||
| 15 | #define LAYOUT( \ | ||
| 16 | L00, L01, L02, L03, L04, L05, L06, R00, R01, R02, R03, R04, R05, R06, \ | ||
| 17 | L10, L11, L12, L13, L14, L15, L16, R10, R11, R12, R13, R14, R15, R16, \ | ||
| 18 | L20, L21, L22, L23, L24, L25, L26, R20, R21, R22, R23, R24, R25, R26, \ | ||
| 19 | L30, L31, L32, L33, L34, L35, L36, R30, R31, R32, R33, R34, R35, R36, \ | ||
| 20 | L40, L41, L42, L43, L44, L45, L46, R40, R41, R42, R43, R44, R45, R46 \ | ||
| 21 | ) \ | ||
| 22 | { \ | ||
| 23 | { L00, L01, L02, L03, L04, L05, L06 }, \ | ||
| 24 | { L10, L11, L12, L13, L14, L15, L16 }, \ | ||
| 25 | { L20, L21, L22, L23, L24, L25, L26 }, \ | ||
| 26 | { L30, L31, L32, L33, L34, L35, L36 }, \ | ||
| 27 | { L40, L41, L42, L43, L44, L45, L46 }, \ | ||
| 28 | { R06, R05, R04, R03, R02, R01, R00 }, \ | ||
| 29 | { R16, R15, R14, R13, R12, R11, R10 }, \ | ||
| 30 | { R26, R25, R24, R23, R22, R21, R20 }, \ | ||
| 31 | { R36, R35, R34, R33, R32, R31, R30 }, \ | ||
| 32 | { R46, R45, R44, R43, R42, R41, R40 } \ | ||
| 33 | } | ||
| 34 | |||
| 35 | #define LAYOUT_ortho_5x14 LAYOUT | ||
diff --git a/keyboards/viterbi/rev2/rules.mk b/keyboards/viterbi/rev2/rules.mk new file mode 100644 index 000000000..f95e7ae6a --- /dev/null +++ b/keyboards/viterbi/rev2/rules.mk | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | BACKLIGHT_ENABLE = yes | ||
| 2 | |||
| 3 | LAYOUTS = ortho_5x14 | ||
diff --git a/keyboards/viterbi/rules.mk b/keyboards/viterbi/rules.mk index ee043cca3..1aa4314f4 100644 --- a/keyboards/viterbi/rules.mk +++ b/keyboards/viterbi/rules.mk | |||
| @@ -1,48 +1,7 @@ | |||
| 1 | SRC += matrix.c \ | ||
| 2 | i2c.c \ | ||
| 3 | split_util.c \ | ||
| 4 | serial.c | ||
| 5 | |||
| 6 | # MCU name | ||
| 7 | #MCU = at90usb1287 | ||
| 8 | MCU = atmega32u4 | 1 | MCU = 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. | ||
| 21 | F_CPU = 16000000 | 2 | F_CPU = 16000000 |
| 22 | |||
| 23 | # | ||
| 24 | # LUFA specific | ||
| 25 | # | ||
| 26 | # Target architecture (see library "Board Types" documentation). | ||
| 27 | ARCH = AVR8 | 3 | ARCH = AVR8 |
| 28 | |||
| 29 | # Input clock frequency. | ||
| 30 | # This will define a symbol, F_USB, in all source code files equal to the | ||
| 31 | # input clock frequency (before any prescaling is performed) in Hz. This value may | ||
| 32 | # differ from F_CPU if prescaling is used on the latter, and is required as the | ||
| 33 | # raw input clock is fed directly to the PLL sections of the AVR for high speed | ||
| 34 | # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' | ||
| 35 | # at the end, this will be done automatically to create a 32-bit value in your | ||
| 36 | # source code. | ||
| 37 | # | ||
| 38 | # If no clock division is performed on the input clock inside the AVR (via the | ||
| 39 | # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. | ||
| 40 | F_USB = $(F_CPU) | 4 | F_USB = $(F_CPU) |
| 41 | |||
| 42 | # Bootloader | ||
| 43 | # This definition is optional, and if your keyboard supports multiple bootloaders of | ||
| 44 | # different sizes, comment this out, and the correct address will be loaded | ||
| 45 | # automatically (+60). See bootloader.mk for all options. | ||
| 46 | BOOTLOADER = caterina | 5 | BOOTLOADER = caterina |
| 47 | 6 | ||
| 48 | # Interrupt driven control endpoint task(+60) | 7 | # Interrupt driven control endpoint task(+60) |
| @@ -63,14 +22,11 @@ MIDI_ENABLE = no # MIDI controls | |||
| 63 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
| 64 | UNICODE_ENABLE = no # Unicode | 23 | UNICODE_ENABLE = no # Unicode |
| 65 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 66 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. | 25 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. |
| 67 | SUBPROJECT_rev1 = yes | ||
| 68 | USE_I2C = yes | ||
| 69 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 26 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 70 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 27 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 71 | 28 | ||
| 72 | CUSTOM_MATRIX = yes | 29 | SPLIT_KEYBOARD = yes |
| 73 | |||
| 74 | DEFAULT_FOLDER = viterbi/rev1 | ||
| 75 | 30 | ||
| 31 | DEFAULT_FOLDER = viterbi/rev2 | ||
| 76 | LAYOUTS = ortho_5x14 | 32 | LAYOUTS = ortho_5x14 |
diff --git a/keyboards/viterbi/serial.c b/keyboards/viterbi/serial.c deleted file mode 100644 index 74bcbb6bf..000000000 --- a/keyboards/viterbi/serial.c +++ /dev/null | |||
| @@ -1,228 +0,0 @@ | |||
| 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 | #ifndef USE_I2C | ||
| 16 | |||
| 17 | // Serial pulse period in microseconds. Its probably a bad idea to lower this | ||
| 18 | // value. | ||
| 19 | #define SERIAL_DELAY 24 | ||
| 20 | |||
| 21 | uint8_t volatile serial_slave_buffer[SERIAL_SLAVE_BUFFER_LENGTH] = {0}; | ||
| 22 | uint8_t volatile serial_master_buffer[SERIAL_MASTER_BUFFER_LENGTH] = {0}; | ||
| 23 | |||
| 24 | #define SLAVE_DATA_CORRUPT (1<<0) | ||
| 25 | volatile uint8_t status = 0; | ||
| 26 | |||
| 27 | inline static | ||
| 28 | void serial_delay(void) { | ||
| 29 | _delay_us(SERIAL_DELAY); | ||
| 30 | } | ||
| 31 | |||
| 32 | inline static | ||
| 33 | void serial_output(void) { | ||
| 34 | SERIAL_PIN_DDR |= SERIAL_PIN_MASK; | ||
| 35 | } | ||
| 36 | |||
| 37 | // make the serial pin an input with pull-up resistor | ||
| 38 | inline static | ||
| 39 | void serial_input(void) { | ||
| 40 | SERIAL_PIN_DDR &= ~SERIAL_PIN_MASK; | ||
| 41 | SERIAL_PIN_PORT |= SERIAL_PIN_MASK; | ||
| 42 | } | ||
| 43 | |||
| 44 | inline static | ||
| 45 | uint8_t serial_read_pin(void) { | ||
| 46 | return !!(SERIAL_PIN_INPUT & SERIAL_PIN_MASK); | ||
| 47 | } | ||
| 48 | |||
| 49 | inline static | ||
| 50 | void serial_low(void) { | ||
| 51 | SERIAL_PIN_PORT &= ~SERIAL_PIN_MASK; | ||
| 52 | } | ||
| 53 | |||
| 54 | inline static | ||
| 55 | void serial_high(void) { | ||
| 56 | SERIAL_PIN_PORT |= SERIAL_PIN_MASK; | ||
| 57 | } | ||
| 58 | |||
| 59 | void serial_master_init(void) { | ||
| 60 | serial_output(); | ||
| 61 | serial_high(); | ||
| 62 | } | ||
| 63 | |||
| 64 | void 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. | ||
| 74 | static | ||
| 75 | void 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. | ||
| 84 | static | ||
| 85 | void 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 | ||
| 95 | static | ||
| 96 | uint8_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 | ||
| 109 | static | ||
| 110 | void 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 | ||
| 124 | ISR(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 | |||
| 160 | inline | ||
| 161 | bool 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 | ||
| 171 | int 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/viterbi/serial.h b/keyboards/viterbi/serial.h deleted file mode 100644 index 15fe4db7b..000000000 --- a/keyboards/viterbi/serial.h +++ /dev/null | |||
| @@ -1,26 +0,0 @@ | |||
| 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 | ||
| 18 | extern volatile uint8_t serial_slave_buffer[SERIAL_SLAVE_BUFFER_LENGTH]; | ||
| 19 | extern volatile uint8_t serial_master_buffer[SERIAL_MASTER_BUFFER_LENGTH]; | ||
| 20 | |||
| 21 | void serial_master_init(void); | ||
| 22 | void serial_slave_init(void); | ||
| 23 | int serial_update_buffers(void); | ||
| 24 | bool serial_slave_data_corrupt(void); | ||
| 25 | |||
| 26 | #endif | ||
diff --git a/keyboards/viterbi/split_util.c b/keyboards/viterbi/split_util.c deleted file mode 100644 index 346cbc908..000000000 --- a/keyboards/viterbi/split_util.c +++ /dev/null | |||
| @@ -1,86 +0,0 @@ | |||
| 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 | |||
| 19 | volatile bool isLeftHand = true; | ||
| 20 | |||
| 21 | static 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 | |||
| 34 | static 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 | |||
| 45 | static 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 | |||
| 54 | bool 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 | |||
| 60 | void 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 | |||
| 71 | void 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 | ||
| 80 | void matrix_setup(void) { | ||
| 81 | split_keyboard_setup(); | ||
| 82 | |||
| 83 | if (!has_usb()) { | ||
| 84 | keyboard_slave_loop(); | ||
| 85 | } | ||
| 86 | } | ||
diff --git a/keyboards/viterbi/split_util.h b/keyboards/viterbi/split_util.h deleted file mode 100644 index a0a8dd3bf..000000000 --- a/keyboards/viterbi/split_util.h +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 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 | |||
| 10 | extern volatile bool isLeftHand; | ||
| 11 | |||
| 12 | // slave version of matix scan, defined in matrix.c | ||
| 13 | void matrix_slave_scan(void); | ||
| 14 | |||
| 15 | void split_keyboard_setup(void); | ||
| 16 | bool has_usb(void); | ||
| 17 | void keyboard_slave_loop(void); | ||
| 18 | |||
| 19 | void matrix_master_OLED_init (void); | ||
| 20 | |||
| 21 | #endif | ||
diff --git a/keyboards/viterbi/viterbi.h b/keyboards/viterbi/viterbi.h index 80d2a8f25..b19f33154 100644 --- a/keyboards/viterbi/viterbi.h +++ b/keyboards/viterbi/viterbi.h | |||
| @@ -1,8 +1,11 @@ | |||
| 1 | #ifndef VITERBI_H | 1 | #pragma once |
| 2 | #define VITERBI_H | 2 | |
| 3 | #include "quantum.h" | ||
| 3 | 4 | ||
| 4 | #ifdef KEYBOARD_viterbi_rev1 | 5 | #ifdef KEYBOARD_viterbi_rev1 |
| 5 | #include "rev1.h" | 6 | #include "rev1.h" |
| 7 | #elif KEYBOARD_viterbi_rev2 | ||
| 8 | #include "rev2.h" | ||
| 6 | #endif | 9 | #endif |
| 7 | 10 | ||
| 8 | // Used to create a keymap using only KC_ prefixed keys | 11 | // Used to create a keymap using only KC_ prefixed keys |
| @@ -23,6 +26,3 @@ | |||
| 23 | 26 | ||
| 24 | #define LAYOUT_ortho_5x14 LAYOUT | 27 | #define LAYOUT_ortho_5x14 LAYOUT |
| 25 | 28 | ||
| 26 | #include "quantum.h" | ||
| 27 | |||
| 28 | #endif | ||
