File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
arduino-core/src/processing/app/debug Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 4
4
Part of the Processing project - http://processing.org
5
5
6
6
Copyright (c) 2004-09 Ben Fry and Casey Reas
7
- Copyright (c) 2001-04 Massachusetts Institute of Technol("Expoogy
7
+ Copyright (c) 2001-04 Massachusetts Institute of Technology
8
8
9
9
This program is free software; you can redistribute it and/or modify
10
10
it under the terms of the GNU General Public License version 2
Original file line number Diff line number Diff line change @@ -1160,9 +1160,9 @@ void saveHex() throws RunnerException {
1160
1160
1161
1161
String [] cmdArray ;
1162
1162
try {
1163
- String tmp_file = prefs .getOrExcept ("recipe.hex .tmp_file" );
1163
+ String tmp_file = prefs .getOrExcept ("recipe.output .tmp_file" );
1164
1164
tmp_file = StringReplacer .replaceFromMapping (tmp_file , dict );
1165
- String save_file = prefs .getOrExcept ("recipe.hex .save_file" );
1165
+ String save_file = prefs .getOrExcept ("recipe.output .save_file" );
1166
1166
save_file = StringReplacer .replaceFromMapping (save_file , dict );
1167
1167
1168
1168
File hexFile = new File (prefs .get ("build.path" ) + "/" + tmp_file );
Original file line number Diff line number Diff line change @@ -72,8 +72,8 @@ recipe.objcopy.eep.pattern="{compiler.path}{compiler.objcopy.cmd}" {compiler.obj
72
72
recipe.objcopy.hex.pattern="{compiler.path}{compiler.elf2hex.cmd}" {compiler.elf2hex.flags} {compiler.elf2hex.extra_flags} "{build.path}/{build.project_name}.elf" "{build.path}/{build.project_name}.hex"
73
73
74
74
## Save hex
75
- recipe.hex .tmp_file={build.project_name}.hex
76
- recipe.hex .save_file={build.project_name}.{build.variant}.hex
75
+ recipe.output .tmp_file={build.project_name}.hex
76
+ recipe.output .save_file={build.project_name}.{build.variant}.hex
77
77
78
78
## Compute size
79
79
recipe.size.pattern="{compiler.path}{compiler.size.cmd}" -A "{build.path}/{build.project_name}.elf"
Original file line number Diff line number Diff line change @@ -76,8 +76,8 @@ recipe.c.combine.pattern="{compiler.path}{compiler.c.elf.cmd}" {compiler.c.elf.f
76
76
recipe.objcopy.bin.pattern="{compiler.path}{compiler.elf2hex.cmd}" {compiler.elf2hex.flags} {compiler.elf2hex.extra_flags} "{build.path}/{build.project_name}.elf" "{build.path}/{build.project_name}.bin"
77
77
78
78
## Save hex
79
- recipe.hex .tmp_file={build.project_name}.bin
80
- recipe.hex .save_file={build.project_name}.{build.variant}.bin
79
+ recipe.output .tmp_file={build.project_name}.bin
80
+ recipe.output .save_file={build.project_name}.{build.variant}.bin
81
81
82
82
## Compute size
83
83
recipe.size.pattern="{compiler.path}{compiler.size.cmd}" -A "{build.path}/{build.project_name}.elf"
You can’t perform that action at this time.
0 commit comments