forked from platformio/platformio-core
122 lines
2.6 KiB
Python
122 lines
2.6 KiB
Python
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
|
# See LICENSE for details.
|
|
|
|
"""
|
|
Builder for Texas Instruments
|
|
Tiva C Series ARM Cortex-M4 microcontrollers.
|
|
"""
|
|
|
|
from os.path import join
|
|
|
|
from SCons.Script import (COMMAND_LINE_TARGETS, AlwaysBuild, Builder, Default,
|
|
DefaultEnvironment)
|
|
|
|
env = DefaultEnvironment()
|
|
|
|
env.Replace(
|
|
AR="arm-none-eabi-ar",
|
|
AS="arm-none-eabi-gcc",
|
|
CC="arm-none-eabi-gcc",
|
|
CXX="arm-none-eabi-g++",
|
|
OBJCOPY="arm-none-eabi-objcopy",
|
|
RANLIB="arm-none-eabi-ranlib",
|
|
|
|
ARFLAGS=["rcs"],
|
|
|
|
ASFLAGS=[
|
|
"-c",
|
|
"-g", # include debugging info (so errors include line numbers)
|
|
"-x", "assembler-with-cpp",
|
|
"-Wall",
|
|
"-mthumb",
|
|
"-mcpu=cortex-m4",
|
|
"-mfloat-abi=hard",
|
|
"-mfpu=fpv4-sp-d16",
|
|
"-fsingle-precision-constant"
|
|
],
|
|
|
|
CCFLAGS=[
|
|
"-g", # include debugging info (so errors include line numbers)
|
|
"-Os", # optimize for size
|
|
# "-Wall", # show warnings
|
|
"-ffunction-sections", # place each function in its own section
|
|
"-fdata-sections",
|
|
"-Wall",
|
|
"-mthumb",
|
|
"-mcpu=cortex-m4",
|
|
"-mfloat-abi=hard",
|
|
"-mfpu=fpv4-sp-d16",
|
|
"-fsingle-precision-constant",
|
|
"-MMD" # output dependancy info
|
|
],
|
|
|
|
CXXFLAGS=[
|
|
"-fno-rtti",
|
|
"-fno-exceptions"
|
|
],
|
|
|
|
CPPDEFINES=[
|
|
"F_CPU=$BOARD_F_CPU"
|
|
],
|
|
|
|
LINKFLAGS=[
|
|
"-Os",
|
|
"-nostartfiles",
|
|
"-nostdlib",
|
|
"-Wl,--gc-sections",
|
|
"-Wl,--entry=ResetISR",
|
|
"-mthumb",
|
|
"-mcpu=cortex-m4",
|
|
"-mfloat-abi=hard",
|
|
"-mfpu=fpv4-sp-d16",
|
|
"-fsingle-precision-constant"
|
|
],
|
|
|
|
UPLOADER=join("$PIOPACKAGES_DIR", "tool-lm4flash", "lm4flash"),
|
|
UPLOADCMD="$UPLOADER $SOURCES"
|
|
)
|
|
|
|
env.Append(
|
|
BUILDERS=dict(
|
|
ElfToBin=Builder(
|
|
action=" ".join([
|
|
"$OBJCOPY",
|
|
"-O",
|
|
"binary",
|
|
"$SOURCES",
|
|
"$TARGET"]),
|
|
suffix=".bin"
|
|
)
|
|
)
|
|
)
|
|
|
|
CORELIBS = env.ProcessGeneral()
|
|
|
|
#
|
|
# Target: Build executable and linkable firmware
|
|
#
|
|
|
|
target_elf = env.BuildFirmware(CORELIBS + ["c", "gcc", "m"])
|
|
|
|
#
|
|
# Target: Build the .bin file
|
|
#
|
|
|
|
if "uploadlazy" in COMMAND_LINE_TARGETS:
|
|
target_bin = join("$BUILD_DIR", "firmware.bin")
|
|
else:
|
|
target_bin = env.ElfToBin(join("$BUILD_DIR", "firmware"), target_elf)
|
|
|
|
#
|
|
# Target: Upload firmware
|
|
#
|
|
|
|
upload = env.Alias(["upload", "uploadlazy"], target_bin, "$UPLOADCMD")
|
|
AlwaysBuild(upload)
|
|
|
|
#
|
|
# Target: Define targets
|
|
#
|
|
|
|
Default(target_bin)
|