Skip to content

Commit

Permalink
Merge pull request #14 from rswiernik/master
Browse files Browse the repository at this point in the history
Fixed quite a few things
  • Loading branch information
jackhumbert committed Apr 29, 2015
2 parents 61b4d27 + 15110bf commit 03963ba
Show file tree
Hide file tree
Showing 15 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions keyboard/planck/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@ TARGET_DIR = .


# # project specific files
ifdef COMMON_KEYMAP
ifdef COMMON

SRC = keymap_common.c \
matrix_handwire.c \
led.c \
backlight.c

ifdef KEYMAP
SRC := keymap_$(KEYMAP).c $(SRC)
SRC := common_keymaps/keymap_$(KEYMAP).c $(SRC)
else
SRC := keymap_jack.c $(SRC)
SRC := common_keymaps/keymap_jack.c $(SRC)
endif

else
Expand All @@ -71,9 +71,9 @@ SRC = extended_keymap_common.c \
backlight.c

ifdef KEYMAP
SRC := extended_keymap_$(KEYMAP).c $(SRC)
SRC := extended_keymaps/extended_keymap_$(KEYMAP).c $(SRC)
else
SRC := extended_keymap_jack.c $(SRC)
SRC := extended_keymaps/extended_keymap_jack.c $(SRC)
endif

endif
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ const uint8_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

[2] = KEYMAP_GRID( /* Reed RAISE */
GRV, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, BSPC,
TRNS, FN3, FN4, PAUSE, TRNS, TRNS, TRNS, MINS, EQL, LBRC, RBRC, BSLS,
TRNS, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, TRNS,
TRNS, FN3, FN4, PAUSE, TRNS, TRNS, TRNS, MINS, EQL, LBRC, RBRC, BSLS,
TRNS, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, TRNS,
TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, TRNS, FN1, MNXT, VOLD, VOLU, MPLY),

[3] = KEYMAP_GRID( /* Reed LOWER */
TRNS , FN10, FN11, FN12, FN13, FN14, FN15, FN16, FN17, FN18, FN19, DEL,
TRNS, TRNS, TRNS, PAUSE, TRNS, TRNS, TRNS, FN20, FN21, FN23, FN24, FN28,
TRNS, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, TRNS,
TRNS, TRNS, TRNS, TRNS, FN2, TRNS, TRNS, TRNS, MNXT, VOLD, VOLU, MPLY),
TRNS, FN10, FN11, FN12, FN13, FN14, FN15, FN16, FN17, FN18, FN19, DEL,
TRNS, TRNS, INS, HOME, PGUP, TRNS, TRNS, FN20, FN21, FN23, FN24, FN28,
TRNS, TRNS, DEL, END, PGDN, F11, F12, F13, TRNS, VOLD, VOLU, TRNS,
TRNS, TRNS, TRNS, TRNS, FN2, TRNS, TRNS, TRNS, MPRV, MUTE, MPLY, MNXT),
};
const uint16_t PROGMEM fn_actions[] = {
[1] = ACTION_LAYER_MOMENTARY(2), // to Fn overlay - RAISE
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 03963ba

Please sign in to comment.