From 772b40df74188622313906d9f21ced0d16a0c301 Mon Sep 17 00:00:00 2001 From: Arnav Gupta Date: Tue, 10 Feb 2015 04:31:51 +0530 Subject: rename hex -> output using generic term 'output', because for samx32, output is .bin format and not .hex Signed-off-by: Arnav Gupta --- platform.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'platform.txt') diff --git a/platform.txt b/platform.txt index 8347746..04499b0 100644 --- a/platform.txt +++ b/platform.txt @@ -65,7 +65,7 @@ recipe.c.combine.pattern="{compiler.path}{compiler.c.elf.cmd}" {compiler.c.elf.f recipe.objcopy.eep.pattern="{compiler.path}{compiler.objcopy.cmd}" {compiler.objcopy.eep.flags} {compiler.objcopy.eep.extra_flags} "{build.path}/{build.project_name}.elf" "{build.path}/{build.project_name}.eep" ## Create hex -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" +recipe.objcopy.output.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" ## Compute size recipe.size.pattern="{compiler.path}{compiler.size.cmd}" -A "{build.path}/{build.project_name}.elf" -- cgit v1.2.3-18-g5258 From 2aef2cb108cac05695ca5d2dc9fa3359696254eb Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 16 Feb 2015 14:06:20 +0100 Subject: "objcopy" recipes are no more tied to "hex" extension This allow to define specific recipes for every platform but keeps backward compatibility. See #2614 --- platform.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'platform.txt') diff --git a/platform.txt b/platform.txt index 04499b0..051bd01 100644 --- a/platform.txt +++ b/platform.txt @@ -61,11 +61,9 @@ recipe.ar.pattern="{compiler.path}{compiler.ar.cmd}" {compiler.ar.flags} {compil ## Combine gc-sections, archives, and objects recipe.c.combine.pattern="{compiler.path}{compiler.c.elf.cmd}" {compiler.c.elf.flags} -mmcu={build.mcu} {compiler.c.elf.extra_flags} -o "{build.path}/{build.project_name}.elf" {object_files} "{build.path}/{archive_file}" "-L{build.path}" -lm -## Create eeprom +## Create output files (.eep and .hex) recipe.objcopy.eep.pattern="{compiler.path}{compiler.objcopy.cmd}" {compiler.objcopy.eep.flags} {compiler.objcopy.eep.extra_flags} "{build.path}/{build.project_name}.elf" "{build.path}/{build.project_name}.eep" - -## Create hex -recipe.objcopy.output.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" +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" ## Compute size recipe.size.pattern="{compiler.path}{compiler.size.cmd}" -A "{build.path}/{build.project_name}.elf" -- cgit v1.2.3-18-g5258 From 5cbfcfbf076e641483fa629eee4ebda9afacb68f Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Thu, 19 Feb 2015 17:26:44 +0100 Subject: Update revision log. Version set to 1.6.1. --- platform.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'platform.txt') diff --git a/platform.txt b/platform.txt index 051bd01..797e7e3 100644 --- a/platform.txt +++ b/platform.txt @@ -6,7 +6,7 @@ # https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5---3rd-party-Hardware-specification name=Arduino AVR Boards -version=1.6.0 +version=1.6.1 # AVR compile variables # --------------------- -- cgit v1.2.3-18-g5258