summaryrefslogtreecommitdiff
path: root/tests/basic/test.c
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2017-06-16 22:39:56 +0300
committerFred Sundvik <fsundvik@gmail.com>2017-06-18 21:22:22 +0300
commit617578399cf1a0fff70ceeb21d63a06524c801a3 (patch)
tree1b95829dbc159e6353f109131e7ea97fb6317709 /tests/basic/test.c
parentc588fca06cd63c440678d04806042b52ff8a5610 (diff)
Add keymap
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 01d1930ea5..2afb4d6a96 100644
--- a/tests/basic/test.c
+++ b/tests/basic/test.c
@@ -14,4 +14,11 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "quantum.h"
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ [0] = {
+ {KC_A, KC_B},
+ {KC_C, KC_D}
+ },
+};