2015-10-26 21:32:37 +01:00
|
|
|
/*
|
|
|
|
Copyright 2012 Jun Wako <wakojun@gmail.com>
|
|
|
|
Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com>
|
2020-10-13 13:35:36 +02:00
|
|
|
Copyright 2015 ZSA Technology Labs Inc (@zsa)
|
|
|
|
Copyright 2020 Christopher Courtney <drashna@live.com> (@drashna)
|
2015-10-26 21:32:37 +01:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-05-28 10:26:53 +02:00
|
|
|
#pragma once
|
2015-10-26 21:32:37 +01:00
|
|
|
|
2016-11-22 02:17:32 +01:00
|
|
|
|
2015-10-26 21:32:37 +01:00
|
|
|
/* key matrix size */
|
|
|
|
#define MATRIX_ROWS 14
|
improve ergodox ez performance
With these changes, the ergodox ez goes from 315 scans per second
when no keys are pressed (~3.17ms/scan) to 447 (~2.24ms/scan).
The changes to the pin read are just condensing the logic, and
replacing a lot of conditional operations with a single bitwise
inversion.
The change to row scanning is more significant, and merits
explanation. In general, you can only scan one row of a keyboard
at a time, because if you scan two rows, you no longer know
which row is pulling a given column down. But in the Ergodox
design, this isn't the case; the left hand is controlled by an
I2C-based GPIO expander, and the columns and rows are *completely
separate* electrically from the columns and rows on the right-hand
side.
So simply reading rows in parallel offers two significant
improvements. One is that we no longer need the 30us delay after
each right-hand row, because we're spending more than 30us
communicating with the left hand over i2c. Another is that we're
no longer wastefully sending i2c messages to the left hand
to unselect rows when no rows had actually been selected in the
first place. These delays were, between them, coming out to
nearly 30% of the time spent in each scan.
Signed-off-by: seebs <seebs@seebs.net>
2017-11-18 23:11:26 +01:00
|
|
|
#define MATRIX_ROWS_PER_SIDE (MATRIX_ROWS / 2)
|
2015-10-26 21:32:37 +01:00
|
|
|
#define MATRIX_COLS 6
|
|
|
|
|
2020-10-01 01:52:47 +02:00
|
|
|
#define COL_EXPANDED { true, true, true, true, true, true, true, false, false, false, false, false, false, false }
|
|
|
|
#define MATRIX_ONBOARD_ROW_PINS { 0, 0, 0, 0, 0, 0, 0, B0, B1, B2, B3, D2, D3, C6 }
|
|
|
|
#define MATRIX_ONBOARD_COL_PINS { F0, F1, F4, F5, F6, F7 }
|
|
|
|
#define DIODE_DIRECTION COL2ROW
|
|
|
|
#define EXPANDER_COL_REGISTER GPIOB
|
|
|
|
#define EXPANDER_ROW_REGISTER GPIOA
|
|
|
|
#define MATRIX_EXPANDER_COL_PINS { 5, 4, 3, 2, 1, 0 }
|
|
|
|
#define MATRIX_EXPANDER_ROW_PINS { 0, 1, 2, 3, 4, 5, 6 }
|
|
|
|
|
2021-12-29 15:14:48 +01:00
|
|
|
#define MOUSEKEY_INTERVAL 20
|
|
|
|
#define MOUSEKEY_DELAY 0
|
|
|
|
#define MOUSEKEY_TIME_TO_MAX 60
|
|
|
|
#define MOUSEKEY_MAX_SPEED 7
|
|
|
|
#define MOUSEKEY_WHEEL_DELAY 400
|
|
|
|
#define MOUSEKEY_WHEEL_INTERVAL MOUSEKEY_INTERVAL
|
|
|
|
#define MOUSEKEY_WHEEL_MAX_SPEED MOUSEKEY_MAX_SPEED
|
|
|
|
#define MOUSEKEY_WHEEL_TIME_TO_MAX MOUSEKEY_TIME_TO_MAX
|
2017-08-24 04:29:07 +02:00
|
|
|
|
|
|
|
/* key combination for command */
|
|
|
|
#define IS_COMMAND() ( \
|
2019-01-27 09:28:40 +01:00
|
|
|
get_mods() == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
|
|
|
|
get_mods() == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
|
2017-08-24 04:29:07 +02:00
|
|
|
)
|
|
|
|
|
2017-11-23 22:34:50 +01:00
|
|
|
#ifndef LED_BRIGHTNESS_LO
|
2016-07-09 10:26:15 +02:00
|
|
|
#define LED_BRIGHTNESS_LO 15
|
2017-11-23 22:34:50 +01:00
|
|
|
#endif
|
|
|
|
#ifndef LED_BRIGHTNESS_HI
|
2016-07-09 10:26:15 +02:00
|
|
|
#define LED_BRIGHTNESS_HI 255
|
2017-11-23 22:34:50 +01:00
|
|
|
#endif
|
|
|
|
#define LED_BRIGHTNESS_DEFAULT (LED_BRIGHTNESS_HI)
|
2016-07-09 10:26:15 +02:00
|
|
|
|
2019-11-14 21:00:51 +01:00
|
|
|
// Pick one of the modes
|
|
|
|
// Defaults to 15 mirror, for legacy behavior
|
|
|
|
|
|
|
|
// #define ERGODOX_LED_15 // Addresses 15 LEDs, but same position on both halves
|
|
|
|
// #define ERGODOX_LED_15_MIRROR // Addresses 15 LEDs, but are mirrored
|
|
|
|
// #define ERGODOX_LED_30 // Addresses all 30 LED individually
|
|
|
|
|
2017-04-03 21:11:42 +02:00
|
|
|
/* fix space cadet rollover issue */
|
|
|
|
#define DISABLE_SPACE_CADET_ROLLOVER
|
|
|
|
|
2018-11-20 15:55:35 +01:00
|
|
|
/*
|
|
|
|
* The debounce filtering reports a key/switch change directly,
|
|
|
|
* without any extra delay. After that the debounce logic will filter
|
|
|
|
* all further changes, until the key/switch reports the same state for
|
|
|
|
* the given count of scans.
|
|
|
|
* So a perfect switch will get a short debounce period and
|
|
|
|
* a bad key will get a much longer debounce period.
|
|
|
|
* The result is an adaptive debouncing period for each switch.
|
|
|
|
*
|
improve ergodox ez performance
With these changes, the ergodox ez goes from 315 scans per second
when no keys are pressed (~3.17ms/scan) to 447 (~2.24ms/scan).
The changes to the pin read are just condensing the logic, and
replacing a lot of conditional operations with a single bitwise
inversion.
The change to row scanning is more significant, and merits
explanation. In general, you can only scan one row of a keyboard
at a time, because if you scan two rows, you no longer know
which row is pulling a given column down. But in the Ergodox
design, this isn't the case; the left hand is controlled by an
I2C-based GPIO expander, and the columns and rows are *completely
separate* electrically from the columns and rows on the right-hand
side.
So simply reading rows in parallel offers two significant
improvements. One is that we no longer need the 30us delay after
each right-hand row, because we're spending more than 30us
communicating with the left hand over i2c. Another is that we're
no longer wastefully sending i2c messages to the left hand
to unselect rows when no rows had actually been selected in the
first place. These delays were, between them, coming out to
nearly 30% of the time spent in each scan.
Signed-off-by: seebs <seebs@seebs.net>
2017-11-18 23:11:26 +01:00
|
|
|
* If you don't define it here, the matrix code will default to
|
|
|
|
* 5, which is now closer to 10ms, but still plenty according to
|
|
|
|
* manufacturer specs.
|
|
|
|
*/
|
2015-10-26 21:32:37 +01:00
|
|
|
|
2016-12-15 05:24:40 +01:00
|
|
|
|
2018-05-09 15:43:36 +02:00
|
|
|
// RGB backlight
|
2023-10-21 13:41:59 +02:00
|
|
|
#define IS31FL3731_I2C_ADDRESS_1 IS31FL3731_I2C_ADDRESS_GND
|
|
|
|
#define IS31FL3731_I2C_ADDRESS_2 IS31FL3731_I2C_ADDRESS_VCC
|
2019-08-22 02:19:07 +02:00
|
|
|
|
2017-11-06 15:00:05 +01:00
|
|
|
// #define RGBLIGHT_COLOR_LAYER_0 0x00, 0x00, 0xFF
|
2017-11-09 14:12:43 +01:00
|
|
|
/* #define RGBLIGHT_COLOR_LAYER_1 0x00, 0x00, 0xFF */
|
|
|
|
/* #define RGBLIGHT_COLOR_LAYER_2 0xFF, 0x00, 0x00 */
|
|
|
|
/* #define RGBLIGHT_COLOR_LAYER_3 0x00, 0xFF, 0x00 */
|
|
|
|
/* #define RGBLIGHT_COLOR_LAYER_4 0xFF, 0xFF, 0x00 */
|
|
|
|
/* #define RGBLIGHT_COLOR_LAYER_5 0x00, 0xFF, 0xFF */
|
|
|
|
/* #define RGBLIGHT_COLOR_LAYER_6 0xFF, 0x00, 0xFF */
|
|
|
|
/* #define RGBLIGHT_COLOR_LAYER_7 0xFF, 0xFF, 0xFF */
|
2017-11-06 15:00:05 +01:00
|
|
|
|
2015-10-26 21:32:37 +01:00
|
|
|
/*
|
|
|
|
* Feature disable options
|
|
|
|
* These options are also useful to firmware size reduction.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* disable debug print */
|
|
|
|
// #define NO_DEBUG
|
|
|
|
|
|
|
|
/* disable print */
|
|
|
|
// #define NO_PRINT
|
|
|
|
|
|
|
|
/* disable action features */
|
|
|
|
//#define NO_ACTION_LAYER
|
|
|
|
//#define NO_ACTION_TAPPING
|
|
|
|
//#define NO_ACTION_ONESHOT
|
2022-03-15 14:56:58 +01:00
|
|
|
|
2015-10-26 21:32:37 +01:00
|
|
|
//#define DEBUG_MATRIX_SCAN_RATE
|