Fix saving output from avrdude and dfu-programmer

This commit is contained in:
Ross Baquir 2020-04-02 16:46:26 -07:00 committed by skullydazed
parent 70b5015162
commit 8af156d976
1 changed files with 9 additions and 3 deletions

View File

@ -14,10 +14,16 @@ from qmk.commands import run
ESSENTIAL_BINARIES = {
'dfu-programmer': {},
'avrdude': {},
'avrdude': {
'version_arg': '-\\?'
},
'dfu-util': {},
'avr-gcc': {'version_arg': '-dumpversion'},
'arm-none-eabi-gcc': {'version_arg': '-dumpversion'},
'avr-gcc': {
'version_arg': '-dumpversion'
},
'arm-none-eabi-gcc': {
'version_arg': '-dumpversion'
},
'bin/qmk': {},
}
ESSENTIAL_SUBMODULES = ['lib/chibios', 'lib/lufa']