@@ -50,23 +50,24 @@ recipe.size.regex=Total\s+([0-9]+).*
50
50
# AVR Uploader/Programmers tools
51
51
# -------------------
52
52
53
- tools.avrdude.cmd=avrdude
54
- tools.avrdude.path={runtime.ide.path}/hardware/tools
55
- tools.avrdude.config.path={path}/avrdude.conf
53
+ tools.avrdude.cmd.path={runtime.ide.path}/hardware/tools/avr/bin/avrdude
54
+ tools.avrdude.config.path={runtime.ide.path}/hardware/tools/avr/etc/avrdude.conf
55
+ tools.avrdude.cmd.path.linux={runtime.ide.path}/hardware/tools/avrdude
56
+ tools.avrdude.config.path.linux={runtime.ide.path}/hardware/tools/avrdude.conf
56
57
57
58
tools.avrdude.upload.params.verbose=-v -v -v -v
58
59
tools.avrdude.upload.params.quiet=-q -q
59
- tools.avrdude.upload.pattern="{path}/{ cmd}" "-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"
60
+ 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"
60
61
61
62
tools.avrdude.program.params.verbose=-v -v -v -v
62
63
tools.avrdude.program.params.quiet=-q -q
63
- tools.avrdude.program.pattern="{path}/{ cmd}" "-C{config.path}" {program.verbose} -p{build.mcu} -c{protocol} {program.extra_params} "-Uflash:w:{build.path}/{build.project_name}.hex:i"
64
+ 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"
64
65
65
66
tools.avrdude.erase.params.verbose=-v -v -v -v
66
67
tools.avrdude.erase.params.quiet=-q -q
67
- tools.avrdude.erase.pattern="{path}/{ cmd}" "-C{config.path}" {erase.verbose} -p{build.mcu} -c{protocol} {program.extra_params} -e -Ulock:w:{bootloader.unlock_bits}:m -Uefuse:w:{bootloader.extended_fuses}:m -Uhfuse:w:{bootloader.high_fuses}:m -Ulfuse:w:{bootloader.low_fuses}:m
68
+ tools.avrdude.erase.pattern="{cmd.path }" "-C{config.path}" {erase.verbose} -p{build.mcu} -c{protocol} {program.extra_params} -e -Ulock:w:{bootloader.unlock_bits}:m -Uefuse:w:{bootloader.extended_fuses}:m -Uhfuse:w:{bootloader.high_fuses}:m -Ulfuse:w:{bootloader.low_fuses}:m
68
69
69
70
tools.avrdude.bootloader.params.verbose=-v -v -v -v
70
71
tools.avrdude.bootloader.params.quiet=-q -q
71
- tools.avrdude.bootloader.pattern="{path}/{ cmd}" "-C{config.path}" {bootloader.verbose} -p{build.mcu} -c{protocol} {program.extra_params} "-Uflash:w:{runtime.ide.path}/hardware/arduino/avr/bootloaders/{bootloader.file}:i" -Ulock:w:{bootloader.lock_bits}:m
72
+ tools.avrdude.bootloader.pattern="{cmd.path }" "-C{config.path}" {bootloader.verbose} -p{build.mcu} -c{protocol} {program.extra_params} "-Uflash:w:{runtime.ide.path}/hardware/arduino/avr/bootloaders/{bootloader.file}:i" -Ulock:w:{bootloader.lock_bits}:m
72
73
0 commit comments