diff options
author | James Young <xxiinophobia@yahoo.com> | 2020-02-26 21:34:41 -0800 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2020-03-05 16:00:10 -0800 |
commit | bc31ebd0c479f8eb74dca8c22a09accbcc6fb02e (patch) | |
tree | f026ee36182cc12eabecc61fd2ac08e4345a2730 /docs/hand_wire.md | |
parent | fbf27e74441c14b7e28e82d48b03fc4434d8af6a (diff) | |
download | qmk_firmware-bc31ebd0c479f8eb74dca8c22a09accbcc6fb02e.tar.gz qmk_firmware-bc31ebd0c479f8eb74dca8c22a09accbcc6fb02e.zip |
Hand Wire guide tidying, part 2
Diffstat (limited to 'docs/hand_wire.md')
-rw-r--r-- | docs/hand_wire.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/hand_wire.md b/docs/hand_wire.md index bfc5e13f6..75fd546fe 100644 --- a/docs/hand_wire.md +++ b/docs/hand_wire.md | |||
@@ -183,14 +183,14 @@ The source given by Keyboard Firmware Builder is QMK, but is based on a version | |||
183 | 183 | ||
184 | 1. Extract the `kb` folder to `qmk_firmware/keyboards/handwired/`. | 184 | 1. Extract the `kb` folder to `qmk_firmware/keyboards/handwired/`. |
185 | 2. Open the extracted `kb` folder, then proceed to the `keymaps/default/` folder, and open `keymap.c`. | 185 | 2. Open the extracted `kb` folder, then proceed to the `keymaps/default/` folder, and open `keymap.c`. |
186 | * Locate and delete the `action_get_macro` code block: | 186 | 3. Locate and delete the `action_get_macro` code block: |
187 | ``` | 187 | ``` |
188 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { | 188 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { |
189 | ... | 189 | ... |
190 | return MACRO_NONE; | 190 | return MACRO_NONE; |
191 | } | 191 | } |
192 | ``` | 192 | ``` |
193 | * Save and close `keymap.c`. | 193 | 4. Save and close `keymap.c`. |
194 | 194 | ||
195 | ## Flashing the Firmware | 195 | ## Flashing the Firmware |
196 | 196 | ||