File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ ARDUINO 1.6.13
7
7
didn't use it straight away (this caused issues mainly on CI environments)
8
8
9
9
[core]
10
+ * avr: set default values for "upload.verify" and "program.verify" (allows compatibility with older IDE). Thanks @per1234
10
11
11
12
ARDUINO 1.6.12 - 2016.09.21
12
13
Original file line number Diff line number Diff line change @@ -97,11 +97,15 @@ tools.avrdude.config.path={path}/etc/avrdude.conf
97
97
98
98
tools.avrdude.upload.params.verbose=-v
99
99
tools.avrdude.upload.params.quiet=-q -q
100
+ # tools.avrdude.upload.verify is needed for backwards compatibility with IDE 1.6.8 or older, IDE 1.6.9 or newer overrides this value
101
+ tools.avrdude.upload.verify=
100
102
tools.avrdude.upload.params.noverify=-V
101
103
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"
102
104
103
105
tools.avrdude.program.params.verbose=-v
104
106
tools.avrdude.program.params.quiet=-q -q
107
+ # tools.avrdude.program.verify is needed for backwards compatibility with IDE 1.6.8 or older, IDE 1.6.9 or newer overrides this value
108
+ tools.avrdude.program.verify=
105
109
tools.avrdude.program.params.noverify=-V
106
110
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"
107
111
You can’t perform that action at this time.
0 commit comments