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).