summaryrefslogtreecommitdiffstats
path: root/tmk_core/common
diff options
context:
space:
mode:
authorJeremiah <jeremiah.barrar@gmail.com>2017-05-13 22:19:28 +0200
committerJeremiah <jeremiah.barrar@gmail.com>2017-05-13 22:19:28 +0200
commitb9895771edb4cca2bb17f5872a0e6ee068c91500 (patch)
tree2f362902a2f881c90bc8698e0a5b3e93680a6502 /tmk_core/common
parent849ed5a6a03b14defa94a50b66169abac89b9c08 (diff)
downloadqmk_firmware-b9895771edb4cca2bb17f5872a0e6ee068c91500.tar.gz
qmk_firmware-b9895771edb4cca2bb17f5872a0e6ee068c91500.tar.xz
improvements
Diffstat (limited to 'tmk_core/common')
-rw-r--r--tmk_core/common/keyboard.c39
-rw-r--r--tmk_core/common/keyboard.h1
2 files changed, 16 insertions, 24 deletions
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c
index 93a066e57..116914e1a 100644
--- a/tmk_core/common/keyboard.c
+++ b/tmk_core/common/keyboard.c
@@ -62,12 +62,21 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#endif
-
#ifdef MATRIX_HAS_GHOST
-static uint16_t matrix_ghost_check[MATRIX_ROWS];
+extern const uint16_t keymaps[][MATRIX_ROWS][MATRIX_COLS];
+// bit map of true keys and empty spots in matrix, each row is reversed
+static uint16_t get_row_ghost_check(uint16_t row){
+ for (int col = 0; col < MATRIX_COLS; col++) {
+ if (keymaps[0][row][col])
+ row &= 1<<col;
+ else
+ row &= 0<<col;
+ }
+ return row;
+}
static bool has_ghost_in_row(uint8_t row)
{
- matrix_row_t matrix_row = (matrix_get_row(row) & matrix_ghost_check[row]);
+ matrix_row_t matrix_row = (get_row_ghost_check(matrix_get_row(row)));
/* No ghost exists when less than 2 keys are down on the row.
If there are "active" blanks in the matrix, the key can't be pressed by the user,
there is no doubt as to which keys are really being pressed.
@@ -76,29 +85,16 @@ static bool has_ghost_in_row(uint8_t row)
return false;
}
// Ghost occurs when the row shares column line with other row, blanks in the matrix don't matter
- // If there are more than two real keys pressed and they match another row's real keys, the row will be ignored.
+ // If there are two or more real keys pressed and they match another row's real keys, the row will be ignored.
for (uint8_t i=0; i < MATRIX_ROWS; i++) {
- if (i != row && __builtin_popcount((matrix_get_row(i) & matrix_ghost_check[i]) & matrix_row) > 1){
+ if (i != row && __builtin_popcount(
+ get_row_ghost_check(matrix_get_row(i)) & matrix_row
+ ) > 1){
return true;
}
}
return false;
- return false;
}
-
-extern const uint8_t keymaps[][MATRIX_ROWS][MATRIX_COLS];
-// bit map of true keys and empty spots in matrix, each row is reversed
-void make_ghost_check_array(){
- for (int row = 0; row < MATRIX_ROWS; row++) {
- for (int col = 0; col < MATRIX_COLS; col++) {
- if (keymaps[0][row][col] & 0xFF)
- matrix_ghost_check[row] |= 1<<col;
- else
- matrix_ghost_check[row] |= 0<<col;
- }
- }
-}
-
#endif
__attribute__ ((weak))
@@ -138,9 +134,6 @@ void keyboard_init(void) {
#if defined(NKRO_ENABLE) && defined(FORCE_NKRO)
keymap_config.nkro = 1;
#endif
-#ifdef MATRIX_HAS_GHOST
- make_ghost_check_array();
-#endif
}
/*
diff --git a/tmk_core/common/keyboard.h b/tmk_core/common/keyboard.h
index fe2a8fe81..f17003c2f 100644
--- a/tmk_core/common/keyboard.h
+++ b/tmk_core/common/keyboard.h
@@ -57,7 +57,6 @@ static inline bool IS_RELEASED(keyevent_t event) { return (!IS_NOEVENT(event) &&
.time = (timer_read() | 1) \
}
-void make_ghost_check_array(void);
/* it runs once at early stage of startup before keyboard_init. */
void keyboard_setup(void);
/* it runs once after initializing host side protocol, debug and MCU peripherals. */