diff options
author | gh-megabit <luke@wildstorm.co.uk> | 2016-04-15 21:15:34 +0100 |
---|---|---|
committer | gh-megabit <luke@wildstorm.co.uk> | 2016-04-15 21:15:34 +0100 |
commit | 9933c364f74ff1eadb2c01d120cf72a27cad43bd (patch) | |
tree | ba243aa40e694f1457aa9a0ace407bbbf2c18816 /platform.txt | |
parent | 5e194bd8efe8dcd2fb6eaa13cec1a2a642c5254a (diff) |
Implement Do-Not-Verify-After-Upload preference for Serial Uploads
Diffstat (limited to 'platform.txt')
-rw-r--r-- | platform.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/platform.txt b/platform.txt index ed80bac..08171ad 100644 --- a/platform.txt +++ b/platform.txt @@ -97,11 +97,13 @@ tools.avrdude.config.path={path}/etc/avrdude.conf tools.avrdude.upload.params.verbose=-v tools.avrdude.upload.params.quiet=-q -q -tools.avrdude.upload.pattern="{cmd.path}" "-C{config.path}" {upload.verbose} -p{build.mcu} -c{upload.protocol} -P{serial.port} -b{upload.speed} -D "-Uflash:w:{build.path}/{build.project_name}.hex:i" +tools.avrdude.upload.params.noverify=-V +tools.avrdude.upload.pattern="{cmd.path}" "-C{config.path}" {upload.verbose} {upload.verify} -p{build.mcu} -c{upload.protocol} -P{serial.port} -b{upload.speed} -D "-Uflash:w:{build.path}/{build.project_name}.hex:i" tools.avrdude.program.params.verbose=-v tools.avrdude.program.params.quiet=-q -q -tools.avrdude.program.pattern="{cmd.path}" "-C{config.path}" {program.verbose} -p{build.mcu} -c{protocol} {program.extra_params} "-Uflash:w:{build.path}/{build.project_name}.hex:i" +tools.avrdude.program.params.noverify=-V +tools.avrdude.program.pattern="{cmd.path}" "-C{config.path}" {program.verbose} {program.verify} -p{build.mcu} -c{protocol} {program.extra_params} "-Uflash:w:{build.path}/{build.project_name}.hex:i" tools.avrdude.erase.params.verbose=-v tools.avrdude.erase.params.quiet=-q -q |