Skip to content

Commit

Permalink
Add keymap
Browse files Browse the repository at this point in the history
  • Loading branch information
fredizzimo committed Jun 18, 2017
1 parent c588fca commit 6175783
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/basic/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#ifndef TESTS_BASIC_CONFIG_H_
#define TESTS_BASIC_CONFIG_H_

#define MATRIX_ROWS 1
#define MATRIX_ROWS 2
#define MATRIX_COLS 2


Expand Down
7 changes: 7 additions & 0 deletions tests/basic/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -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}
},
};

0 comments on commit 6175783

Please sign in to comment.