Updated Appendix D: QMK Firmware Programming (markdown)

ploopyco 2023-09-28 09:11:28 -04:00
parent 533a7a442d
commit e1352a089b
1 changed files with 2 additions and 4 deletions

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