diff options
| author | Joel Challis | 2025-07-09 21:54:43 +0200 |
|---|---|---|
| committer | GitHub | 2025-07-09 21:54:43 +0200 |
| commit | 3d6113956707f9e90a6cca2025e5fa5db35013b3 (patch) | |
| tree | 67e5088d52e521fac679761d60c36622a77fd6ef /keyboards/handwired | |
| parent | 15e7c8f37a6fe017b61f7a355a89fdc83e965deb (diff) | |
Miscellaneous fixes for lint warnings (#25469)
Diffstat (limited to 'keyboards/handwired')
| -rw-r--r-- | keyboards/handwired/pytest/basic/keymaps/default/keymap.c | 2 | ||||
| -rw-r--r-- | keyboards/handwired/pytest/has_community/keymaps/default/default/keymap.c | 7 |
2 files changed, 9 insertions, 0 deletions
diff --git a/keyboards/handwired/pytest/basic/keymaps/default/keymap.c b/keyboards/handwired/pytest/basic/keymaps/default/keymap.c index a5782f7a13..264de943c9 100644 --- a/keyboards/handwired/pytest/basic/keymaps/default/keymap.c +++ b/keyboards/handwired/pytest/basic/keymaps/default/keymap.c @@ -1,3 +1,5 @@ +// Copyright 2025 QMK +// SPDX-License-Identifier: GPL-2.0-or-later #include QMK_KEYBOARD_H const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { diff --git a/keyboards/handwired/pytest/has_community/keymaps/default/default/keymap.c b/keyboards/handwired/pytest/has_community/keymaps/default/default/keymap.c new file mode 100644 index 0000000000..264de943c9 --- /dev/null +++ b/keyboards/handwired/pytest/has_community/keymaps/default/default/keymap.c @@ -0,0 +1,7 @@ +// Copyright 2025 QMK +// SPDX-License-Identifier: GPL-2.0-or-later +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + LAYOUT_ortho_1x1(KC_A) +}; |