summaryrefslogtreecommitdiffstats
path: root/lib/python/qmk/cli/flash.py
Commit message (Collapse)AuthorAgeFilesLines
* Update the flash cli command to use the user config (#8125)Erovia2020-02-081-2/+2
|
* Also fix flashZach White2019-12-081-2/+3
|
* Add flake8 to our test suite and fix all errors (#7379)skullydazed2019-11-201-8/+2
| | | | | | * Add flake8 to our test suite and fix all errors * Add some documentation
* format code according to conventions [skip ci]QMK Bot2019-11-161-1/+2
|
* Add CLI command for flashing a keyboardjorgemanzo2019-11-151-0/+87
A new CLI subcommand was added, flash, which behaves very similar to the already present compile CLI comamnd, but with the added ability to target a bootloader. The command is used like so: qmk flash [-h] [-b] [-kb KEYBOARD] [-km KEYMAP] [-bl BOOTLOADER] [filename]. A -kb <keyboard> and -km <keymap> is expected, or a configurator export JSON filename. A bootloader can be specified using -bl <target>, and if left unspecified, the target is assumed to be :flash. -bl can be used to list the available bootloaders. If -km <keymap> is provided, but no -kb <keyboard>, then a message is printed suggesting the user to run qmk list_keyboards.