A bigger test matrix, and test for unmapped keys
This commit is contained in:
parent
1e4cc36e14
commit
72c8df1f19
3 changed files with 18 additions and 5 deletions
|
@ -16,9 +16,13 @@
|
|||
|
||||
#include "quantum.h"
|
||||
|
||||
// Don't rearrange keys as existing tests might rely on the order
|
||||
// Col2, Row 0 has to be KC_NO, because tests rely on it
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = {
|
||||
{KC_A, KC_B},
|
||||
{KC_C, KC_D}
|
||||
{KC_A, KC_B, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO},
|
||||
{KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO},
|
||||
{KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO},
|
||||
{KC_C, KC_D, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO},
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue