aboutsummaryrefslogtreecommitdiff
path: root/tests/basic/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basic/test.c')
-rw-r--r--tests/basic/test.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/basic/test.c b/tests/basic/test.c
index 01d1930ea..2afb4d6a9 100644
--- a/tests/basic/test.c
+++ b/tests/basic/test.c
@@ -14,4 +14,11 @@
14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */ 15 */
16 16
17#include "quantum.h"
17 18
19const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
20 [0] = {
21 {KC_A, KC_B},
22 {KC_C, KC_D}
23 },
24};