diff options
author | Cristian Maglie <c.maglie@arduino.cc> | 2016-04-28 15:09:27 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@arduino.cc> | 2016-04-28 15:09:27 +0200 |
commit | b345c256ecb00e889281e64cbf4cd47913956730 (patch) | |
tree | b4348abc63f5c6400a4281c24ffecdd327f60136 /platform.txt | |
parent | e62ca7be81c90a931f7f18519782ea7fd2d914a3 (diff) | |
parent | 9933c364f74ff1eadb2c01d120cf72a27cad43bd (diff) |
Merge branch 'upload-without-verify' of https://github.com/gh-megabit/Arduino
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 |