File tree 2 files changed +4
-9
lines changed
2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ A.software=ARDUINO
3
3
A.recipe.objcopy.hex.pattern=${A.recipe.objcopy.bin.pattern}
4
4
A.archive_file=arduino.ar
5
5
A.archive_file_path=${A.build.path}/${A.archive_file}
6
- JANTJE .alt_size_command="${A.compiler.path}${A.compiler.size.cmd}" --format=avr --mcu=${A.build.mcu} "${A.build.path}/${A.build.project_name}.elf"
6
+ SLOEBER .alt_size_command="${A.compiler.path}${A.compiler.size.cmd}" --format=avr --mcu=${A.build.mcu} "${A.build.path}/${A.build.project_name}.elf"
7
7
A.runtime.ide.version=10812
8
8
A.build.system.path=${A.referenced.core.path}${DirectoryDelimiter}system
9
9
A.serial.port=${JANTJE.com_port}
Original file line number Diff line number Diff line change 1
1
package io .sloeber .core .api ;
2
2
3
- import static io .sloeber .core .common .Common .getOldWayEnvVar ;
4
- import static io .sloeber .core .common .Common .makeEnvironmentVar ;
5
- import static io .sloeber .core .common .Const .EMPTY ;
6
- import static io .sloeber .core .common .Const .ENV_KEY_JANTJE_START ;
7
- import static io .sloeber .core .common .Const .ERASE_START ;
8
- import static io .sloeber .core .common .Const .RECIPE_SIZE ;
9
- import static io .sloeber .core .common .Const .TRUE ;
3
+ import static io .sloeber .core .common .Common .*;
4
+ import static io .sloeber .core .common .Const .*;
10
5
11
6
import java .util .HashMap ;
12
7
import java .util .Map ;
@@ -38,7 +33,7 @@ public class CompileDescription {
38
33
private static final String ENV_KEY_JANTJE_ADDITIONAL_CPP_COMPILE_OPTIONS = ENV_KEY_JANTJE_START
39
34
+ "extra.cpp.compile" ; //$NON-NLS-1$
40
35
private static final String ENV_KEY_JANTJE_WARNING_LEVEL = ENV_KEY_JANTJE_START + "warning_level" ; //$NON-NLS-1$
41
- private static final String ENV_KEY_JANTJE_SIZE_COMMAND = ERASE_START + " alt_size_command" ; //$NON-NLS-1$
36
+ private static final String ENV_KEY_JANTJE_SIZE_COMMAND = "SLOEBER. alt_size_command" ; //$NON-NLS-1$
42
37
private static final String ENV_KEY_JANTJE_SIZE_SWITCH = ENV_KEY_JANTJE_START + "size.switch" ; //$NON-NLS-1$
43
38
private static final String ENV_KEY_JANTJE_ASSEMBLY_COMPILE_OPTIONS = ENV_KEY_JANTJE_START + "extra.assembly" ; //$NON-NLS-1$
44
39
private static final String ENV_KEY_JANTJE_ARCHIVE_COMPILE_OPTIONS = ENV_KEY_JANTJE_START + "extra.archive" ; //$NON-NLS-1$
You can’t perform that action at this time.
0 commit comments