2012-01-11 13:59:16 +01:00
|
|
|
|
2013-03-21 09:20:29 +01:00
|
|
|
# Arduino SAM Core and platform.
|
|
|
|
#
|
|
|
|
# For more info:
|
|
|
|
# https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5---3rd-party-Hardware-specification
|
2012-01-11 13:59:16 +01:00
|
|
|
|
2012-10-09 21:40:11 +02:00
|
|
|
name=Arduino ARM (32-bits) Boards
|
2013-11-28 10:53:50 +01:00
|
|
|
version=1.5.5
|
2013-03-21 09:20:29 +01:00
|
|
|
|
|
|
|
# SAM3 compile variables
|
|
|
|
# ----------------------
|
|
|
|
|
2013-08-30 10:35:31 +02:00
|
|
|
compiler.path={runtime.ide.path}/hardware/tools/g++_arm_none_eabi/bin/
|
2012-01-11 13:59:16 +01:00
|
|
|
compiler.c.cmd=arm-none-eabi-gcc
|
2012-06-26 00:54:38 +02:00
|
|
|
compiler.c.flags=-c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -Dprintf=iprintf
|
2012-08-13 12:45:36 +02:00
|
|
|
compiler.c.elf.cmd=arm-none-eabi-g++
|
2012-01-13 19:09:07 +01:00
|
|
|
compiler.c.elf.flags=-Os -Wl,--gc-sections
|
2014-01-21 21:57:35 +01:00
|
|
|
compiler.S.flags=-c -g -x assembler-with-cpp
|
2012-01-11 13:59:16 +01:00
|
|
|
compiler.cpp.cmd=arm-none-eabi-g++
|
2012-06-26 00:54:38 +02:00
|
|
|
compiler.cpp.flags=-c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf
|
2012-01-11 13:59:16 +01:00
|
|
|
compiler.ar.cmd=arm-none-eabi-ar
|
|
|
|
compiler.ar.flags=rcs
|
|
|
|
compiler.objcopy.cmd=arm-none-eabi-objcopy
|
|
|
|
compiler.objcopy.eep.flags=-O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0
|
|
|
|
compiler.elf2hex.flags=-O binary
|
|
|
|
compiler.elf2hex.cmd=arm-none-eabi-objcopy
|
|
|
|
compiler.ldflags=
|
|
|
|
compiler.size.cmd=arm-none-eabi-size
|
|
|
|
compiler.define=-DARDUINO=
|
2012-06-26 00:52:05 +02:00
|
|
|
# this can be overriden in boards.txt
|
|
|
|
build.extra_flags=
|
2012-01-11 13:59:16 +01:00
|
|
|
|
|
|
|
|
2012-05-25 11:47:22 +02:00
|
|
|
compiler.libsam.c.flags="-I{build.system.path}/libsam" "-I{build.system.path}/CMSIS/CMSIS/Include/" "-I{build.system.path}/CMSIS/Device/ATMEL/"
|
2012-01-11 13:59:16 +01:00
|
|
|
|
2013-07-22 12:29:02 +02:00
|
|
|
# USB Flags
|
|
|
|
# ---------
|
2013-08-01 15:20:24 +02:00
|
|
|
build.usb_flags=-DUSB_VID={build.vid} -DUSB_PID={build.pid} -DUSBCON '-DUSB_MANUFACTURER={build.usb_manufacturer}' '-DUSB_PRODUCT={build.usb_product}'
|
2013-07-22 12:29:02 +02:00
|
|
|
|
|
|
|
# Default usb manufacturer will be replaced at compile time using
|
|
|
|
# numeric vendor ID if available or by board's specific value.
|
|
|
|
build.usb_manufacturer="Unknown"
|
|
|
|
|
|
|
|
|
2012-01-13 19:09:07 +01:00
|
|
|
# SAM3 compile patterns
|
|
|
|
# ---------------------
|
2011-06-25 18:53:35 +02:00
|
|
|
|
2012-01-13 19:09:07 +01:00
|
|
|
## Compile c files
|
2013-03-18 13:14:30 +01:00
|
|
|
recipe.c.o.pattern="{compiler.path}{compiler.c.cmd}" {compiler.c.flags} -mcpu={build.mcu} -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {build.extra_flags} {compiler.libsam.c.flags} {includes} "{source_file}" -o "{object_file}"
|
2011-06-25 18:53:35 +02:00
|
|
|
|
2012-01-13 19:09:07 +01:00
|
|
|
## Compile c++ files
|
2013-03-18 13:14:30 +01:00
|
|
|
recipe.cpp.o.pattern="{compiler.path}{compiler.cpp.cmd}" {compiler.cpp.flags} -mcpu={build.mcu} -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {build.extra_flags} {compiler.libsam.c.flags} {includes} "{source_file}" -o "{object_file}"
|
2011-06-25 18:53:35 +02:00
|
|
|
|
2012-01-13 19:09:07 +01:00
|
|
|
## Create archives
|
2012-05-25 11:47:22 +02:00
|
|
|
recipe.ar.pattern="{compiler.path}{compiler.ar.cmd}" {compiler.ar.flags} "{build.path}/{archive_file}" "{object_file}"
|
2011-06-25 18:53:35 +02:00
|
|
|
|
2012-01-13 19:09:07 +01:00
|
|
|
## Combine gc-sections, archives, and objects
|
2012-06-08 12:42:49 +02:00
|
|
|
recipe.c.combine.pattern="{compiler.path}{compiler.c.elf.cmd}" {compiler.c.elf.flags} -mcpu={build.mcu} "-T{build.variant.path}/{build.ldscript}" "-Wl,-Map,{build.path}/{build.project_name}.map" -o "{build.path}/{build.project_name}.elf" "-L{build.path}" -lm -lgcc -mthumb -Wl,--cref -Wl,--check-sections -Wl,--gc-sections -Wl,--entry=Reset_Handler -Wl,--unresolved-symbols=report-all -Wl,--warn-common -Wl,--warn-section-align -Wl,--warn-unresolved-symbols -Wl,--start-group "{build.path}/syscalls_sam3.c.o" {object_files} "{build.variant.path}/{build.variant_system_lib}" "{build.path}/{archive_file}" -Wl,--end-group
|
2011-06-25 18:53:35 +02:00
|
|
|
|
2012-01-13 19:09:07 +01:00
|
|
|
## Create eeprom
|
2012-01-11 13:59:16 +01:00
|
|
|
recipe.objcopy.eep.pattern=
|
2011-06-25 18:53:35 +02:00
|
|
|
|
2012-01-13 19:09:07 +01:00
|
|
|
## Create hex
|
2012-05-25 11:47:22 +02:00
|
|
|
recipe.objcopy.hex.pattern="{compiler.path}{compiler.elf2hex.cmd}" {compiler.elf2hex.flags} "{build.path}/{build.project_name}.elf" "{build.path}/{build.project_name}.bin"
|
2011-06-25 18:53:35 +02:00
|
|
|
|
2012-02-13 17:58:30 +01:00
|
|
|
## Compute size
|
2012-05-25 11:47:22 +02:00
|
|
|
recipe.size.pattern="{compiler.path}{compiler.size.cmd}" -A "{build.path}/{build.project_name}.elf"
|
2012-02-13 17:58:30 +01:00
|
|
|
recipe.size.regex=\.text\s+([0-9]+).*
|
2012-01-11 13:59:16 +01:00
|
|
|
|
2011-06-25 18:53:35 +02:00
|
|
|
|
2012-02-13 17:58:30 +01:00
|
|
|
# SAM3 Uploader tools
|
|
|
|
# -------------------
|
|
|
|
|
|
|
|
tools.bossac.cmd=bossac
|
2012-04-02 18:30:53 +02:00
|
|
|
tools.bossac.cmd.windows=bossac.exe
|
2012-02-13 17:58:30 +01:00
|
|
|
tools.bossac.path={runtime.ide.path}/hardware/tools
|
|
|
|
|
|
|
|
tools.bossac.upload.params.verbose=-i -d
|
|
|
|
tools.bossac.upload.params.quiet=
|
2012-09-07 15:59:44 +02:00
|
|
|
tools.bossac.upload.pattern="{path}/{cmd}" {upload.verbose} --port={serial.port.file} -U {upload.native_usb} -e -w -v -b "{build.path}/{build.project_name}.bin" -R
|
2012-02-13 17:58:30 +01:00
|
|
|
|