From e1352a089b0b0169e99a4b0eda99c26ea97df9c3 Mon Sep 17 00:00:00 2001 From: ploopyco <54917504+ploopyco@users.noreply.github.com> Date: Thu, 28 Sep 2023 09:11:28 -0400 Subject: [PATCH] Updated Appendix D: QMK Firmware Programming (markdown) --- Appendix-D:-QMK-Firmware-Programming.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Appendix-D:-QMK-Firmware-Programming.md b/Appendix-D:-QMK-Firmware-Programming.md index 458d2a2..db22bad 100644 --- a/Appendix-D:-QMK-Firmware-Programming.md +++ b/Appendix-D:-QMK-Firmware-Programming.md @@ -34,13 +34,11 @@ You'll require the following fuse settings when programming the bootloader: With your terminal window open and pointed at your QMK build environment, compile the firmware with the following command: -`qmk compile -kb ploopyco/trackball_nano/rev1_001 -km via` +`qmk compile -kb ploopyco/trackball_nano/rev1_001 -km default` Alternatively, you can invoke the Makefile directly with the following: -`make ploopyco/trackball_nano/rev1_001:via` - -If you wish, you can use the default keymap (with `qmk compile -kb ploopyco/trackball_nano/rev1_001 -km default` or `make ploopyco/trackball_nano/rev1_001:default`). However, the VIA keymap is particularly interesting because it allows for customization of the trackball's functions without reflashing the firmware, through the use of the convenient [VIA software package](https://github.com/the-via/releases/releases). It's incredibly handy, so definitely check it out. +`make ploopyco/trackball_nano/rev1_001:default` For more details on building QMK firmware in general, see the [QMK firmware guide](https://docs.qmk.fm/#/newbs_building_firmware).