1
0
Fork 0

Forgot semicolon, and add reference link

This commit is contained in:
Nurahmadie 2017-02-26 11:44:21 +07:00
parent 10105f645a
commit f5d78c739d
2 changed files with 4 additions and 2 deletions

View file

@ -67,7 +67,7 @@ void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
switch (id) { switch (id) {
case 0: case 0:
shift_esc_mask = MODS_PRESSED(SHIFT); shift_esc_mask = MODS_PRESSED(SHIFT);
SET_WHETHER(shift_esc_mask, KC_ESC, KC_GRAVE) SET_WHETHER(shift_esc_mask, KC_ESC, KC_GRAVE);
break; break;
case 1: case 1:
alt_mask = MODS_PRESSED(ALT); alt_mask = MODS_PRESSED(ALT);

View file

@ -17,3 +17,5 @@ Something along this line:
``` ```
avrdude -p m32u4 -c avr109 -P <COM PORT> -C <avrdude conf file> -e -u flash:w:handwired_kbod_default.hex avrdude -p m32u4 -c avr109 -P <COM PORT> -C <avrdude conf file> -e -u flash:w:handwired_kbod_default.hex
``` ```
[More info](https://github.com/fudanchii/keyboard_of_disapproval)