diff options
author | Nurahmadie <nurahmadie@gmail.com> | 2017-02-26 05:44:21 +0100 |
---|---|---|
committer | Nurahmadie <nurahmadie@gmail.com> | 2017-04-02 13:27:28 +0200 |
commit | f5d78c739d48bad32409b3819c8d624d5e78c017 (patch) | |
tree | 15f9ec807be6f23678c6c875b2c70a42cbc673a5 | |
parent | 10105f645a7fdcf0d636e0eb2c768754521602a3 (diff) | |
download | qmk_firmware-f5d78c739d48bad32409b3819c8d624d5e78c017.tar.gz qmk_firmware-f5d78c739d48bad32409b3819c8d624d5e78c017.tar.xz |
Forgot semicolon, and add reference link
-rw-r--r-- | keyboards/handwired/kbod/keymaps/default/keymap.c | 2 | ||||
-rw-r--r-- | keyboards/handwired/kbod/readme.md | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/keyboards/handwired/kbod/keymaps/default/keymap.c b/keyboards/handwired/kbod/keymaps/default/keymap.c index 6f2805d9d..a6c09dd53 100644 --- a/keyboards/handwired/kbod/keymaps/default/keymap.c +++ b/keyboards/handwired/kbod/keymaps/default/keymap.c @@ -67,7 +67,7 @@ void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) { switch (id) { case 0: 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; case 1: alt_mask = MODS_PRESSED(ALT); diff --git a/keyboards/handwired/kbod/readme.md b/keyboards/handwired/kbod/readme.md index bd58fdd38..67bf711be 100644 --- a/keyboards/handwired/kbod/readme.md +++ b/keyboards/handwired/kbod/readme.md @@ -16,4 +16,6 @@ Something along this line: ``` avrdude -p m32u4 -c avr109 -P <COM PORT> -C <avrdude conf file> -e -u flash:w:handwired_kbod_default.hex -```
\ No newline at end of file +``` + +[More info](https://github.com/fudanchii/keyboard_of_disapproval)
\ No newline at end of file |