Skip to content

Commit

Permalink
Fix saving output from avrdude and dfu-programmer
Browse files Browse the repository at this point in the history
  • Loading branch information
StreakInTheSky authored and skullydazed committed Apr 4, 2020
1 parent 70b5015 commit 8af156d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions lib/python/qmk/cli/doctor.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,16 @@

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']
Expand Down

0 comments on commit 8af156d

Please sign in to comment.