bldc/Makefile

289 lines
7.9 KiB
Makefile
Raw Normal View History

2014-01-09 06:20:26 -08:00
##############################################################################
# Build global options
# NOTE: Can be overridden externally.
#
# Compiler options here.
ifeq ($(USE_OPT),)
USE_OPT = -O2 -ggdb -fomit-frame-pointer -falign-functions=16 -std=gnu99 -D_GNU_SOURCE
USE_OPT += -DBOARD_OTG_NOVBUSSENS $(build_args)
2015-12-08 12:01:23 -08:00
USE_OPT += -fsingle-precision-constant -Wdouble-promotion
2014-01-09 06:20:26 -08:00
endif
# C specific options here (added to USE_OPT).
ifeq ($(USE_COPT),)
USE_COPT =
endif
# C++ specific options here (added to USE_OPT).
ifeq ($(USE_CPPOPT),)
USE_CPPOPT = -fno-rtti
endif
# Enable this if you want the linker to remove unused code and data
ifeq ($(USE_LINK_GC),)
USE_LINK_GC = yes
endif
# Linker extra options here.
ifeq ($(USE_LDOPT),)
USE_LDOPT =
endif
# Enable this if you want link time optimizations (LTO)
ifeq ($(USE_LTO),)
USE_LTO = no
endif
2014-01-09 06:20:26 -08:00
# If enabled, this option allows to compile the application in THUMB mode.
ifeq ($(USE_THUMB),)
USE_THUMB = yes
endif
# Enable this if you want to see the full log while compiling.
ifeq ($(USE_VERBOSE_COMPILE),)
USE_VERBOSE_COMPILE = yes
endif
# If enabled, this option makes the build process faster by not compiling
# modules not used in the current configuration.
ifeq ($(USE_SMART_BUILD),)
USE_SMART_BUILD = yes
endif
2014-01-09 06:20:26 -08:00
#
# Build global options
##############################################################################
##############################################################################
# Architecture or project specific options
#
# Stack size to be allocated to the Cortex-M process stack. This stack is
# the stack used by the main() thread.
ifeq ($(USE_PROCESS_STACKSIZE),)
USE_PROCESS_STACKSIZE = 0x800
endif
# Stack size to the allocated to the Cortex-M main/exceptions stack. This
# stack is used for processing interrupts and exceptions.
ifeq ($(USE_EXCEPTIONS_STACKSIZE),)
USE_EXCEPTIONS_STACKSIZE = 0x800
endif
# Enables the use of FPU on Cortex-M4 (no, softfp, hard).
2014-01-09 06:20:26 -08:00
ifeq ($(USE_FPU),)
USE_FPU = hard
2014-01-09 06:20:26 -08:00
endif
# Enable this if you really want to use the STM FWLib.
ifeq ($(USE_FWLIB),)
USE_FWLIB = yes
endif
#
# Architecture or project specific options
##############################################################################
##############################################################################
# Project, sources and paths
#
# Define project name here
PROJECT = BLDC_4_ChibiOS
# Imported source files and paths
CHIBIOS = ChibiOS_3.0.2
# Startup files
include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/startup_stm32f4xx.mk
# HAL-OSAL files
2014-01-09 06:20:26 -08:00
include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/hal/ports/STM32/STM32F4xx/platform.mk
include $(CHIBIOS)/os/hal/osal/rt/osal.mk
# RTOS files
include $(CHIBIOS)/os/rt/rt.mk
include $(CHIBIOS)/os/rt/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk
# Other files
include hwconf/hwconf.mk
include applications/applications.mk
2015-04-11 01:07:36 -07:00
include nrf/nrf.mk
2014-01-09 06:20:26 -08:00
# Define linker script file here
LDSCRIPT= ld_eeprom_emu.ld
2014-01-09 06:20:26 -08:00
# C sources that can be compiled in ARM or THUMB mode depending on the global
# setting.
CSRC = $(STARTUPSRC) \
2014-01-09 06:20:26 -08:00
$(KERNSRC) \
$(PORTSRC) \
$(OSALSRC) \
2014-01-09 06:20:26 -08:00
$(HALSRC) \
$(PLATFORMSRC) \
$(CHIBIOS)/os/hal/lib/streams/chprintf.c \
2014-01-09 06:20:26 -08:00
$(CHIBIOS)/os/various/syscalls.c \
board.c \
2014-01-09 06:20:26 -08:00
main.c \
comm_usb_serial.c \
2014-01-09 06:20:26 -08:00
irq_handlers.c \
buffer.c \
comm_usb.c \
2014-01-09 06:20:26 -08:00
crc.c \
digital_filter.c \
ledpwm.c \
mcpwm.c \
servo_dec.c \
utils.c \
servo.c \
servo_simple.c \
2014-01-09 06:20:26 -08:00
packet.c \
terminal.c \
conf_general.c \
eeprom.c \
commands.c \
2014-09-20 04:41:18 -07:00
timeout.c \
2014-12-06 19:30:25 -08:00
comm_can.c \
ws2811.c \
led_external.c \
2015-04-11 01:07:36 -07:00
encoder.c \
2015-05-08 13:53:59 -07:00
flash_helper.c \
2015-12-08 12:01:23 -08:00
mc_interface.c \
mcpwm_foc.c \
$(HWSRC) \
2015-04-11 01:07:36 -07:00
$(APPSRC) \
$(NRFSRC)
2014-01-09 06:20:26 -08:00
# C++ sources that can be compiled in ARM or THUMB mode depending on the global
# setting.
CPPSRC =
# C sources to be compiled in ARM mode regardless of the global setting.
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
# option that results in lower performance and larger code size.
ACSRC =
# C++ sources to be compiled in ARM mode regardless of the global setting.
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
# option that results in lower performance and larger code size.
ACPPSRC =
# C sources to be compiled in THUMB mode regardless of the global setting.
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
# option that results in lower performance and larger code size.
TCSRC =
# C sources to be compiled in THUMB mode regardless of the global setting.
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
# option that results in lower performance and larger code size.
TCPPSRC =
# List ASM source files here
ASMSRC = $(STARTUPASM) $(PORTASM) $(OSALASM)
2014-01-09 06:20:26 -08:00
INCDIR = $(STARTUPINC) $(KERNINC) $(PORTINC) $(OSALINC) \
$(HALINC) $(PLATFORMINC) \
2014-04-14 14:02:45 -07:00
$(CHIBIOS)/os/various \
2015-12-08 12:01:23 -08:00
$(CHIBIOS)/os/hal/lib/streams \
2014-04-14 14:02:45 -07:00
mcconf \
appconf \
$(HWINC) \
2015-04-11 01:07:36 -07:00
$(APPINC) \
$(NRFINC)
2014-01-09 06:20:26 -08:00
#
# Project, sources and paths
##############################################################################
##############################################################################
# Compiler settings
#
MCU = cortex-m4
#TRGT = arm-elf-
TRGT = arm-none-eabi-
CC = $(TRGT)gcc
CPPC = $(TRGT)g++
# Enable loading with g++ only if you need C++ runtime support.
# NOTE: You can use C++ even without C++ support if you are careful. C++
# runtime support makes code size explode.
LD = $(TRGT)gcc
#LD = $(TRGT)g++
CP = $(TRGT)objcopy
AS = $(TRGT)gcc -x assembler-with-cpp
AR = $(TRGT)ar
2014-01-09 06:20:26 -08:00
OD = $(TRGT)objdump
SZ = $(TRGT)size
2014-01-09 06:20:26 -08:00
HEX = $(CP) -O ihex
BIN = $(CP) -O binary
# ARM-specific options here
AOPT =
# THUMB-specific options here
TOPT = -mthumb -DTHUMB
# Define C warning options here
CWARN = -Wall -Wextra -Wundef -Wstrict-prototypes
2014-01-09 06:20:26 -08:00
# Define C++ warning options here
CPPWARN = -Wall -Wextra -Wundef
2014-01-09 06:20:26 -08:00
#
# Compiler settings
##############################################################################
##############################################################################
# Start of user section
#
# List all user C define here, like -D_DEBUG=1
UDEFS =
# Define ASM defines here
UADEFS =
# List all user directories here
UINCDIR =
# List the user directory to look for the libraries here
ULIBDIR =
# List all user libraries here
ULIBS = -lm
#
# End of user defines
##############################################################################
ifeq ($(USE_FWLIB),yes)
include $(CHIBIOS)/ext/stdperiph_stm32f4/stm32lib.mk
CSRC += $(STM32SRC)
INCDIR += $(STM32INC)
USE_OPT += -DUSE_STDPERIPH_DRIVER
endif
build/$(PROJECT).bin: build/$(PROJECT).elf
$(BIN) build/$(PROJECT).elf build/$(PROJECT).bin
# Program
upload: build/$(PROJECT).bin
2016-11-04 07:18:34 -07:00
# qstlink2 --cli --erase --write build/$(PROJECT).bin
# openocd -f interface/stlink-v2.cfg -c "set WORKAREASIZE 0x2000" -f target/stm32f4x_stlink.cfg -c "program build/$(PROJECT).elf verify reset" # Older openocd
openocd -f board/stm32f4discovery.cfg -c "reset_config trst_only combined" -c "program build/$(PROJECT).elf verify reset exit" # For openocd 0.9
2014-01-09 06:20:26 -08:00
2015-10-06 03:50:48 -07:00
#program with olimex arm-usb-tiny-h and jtag-swd adapter board. needs openocd>=0.9
upload-olimex: build/$(PROJECT).bin
openocd -f interface/ftdi/olimex-arm-usb-tiny-h.cfg -f interface/ftdi/olimex-arm-jtag-swd.cfg -c "set WORKAREASIZE 0x2000" -f target/stm32f4x.cfg -c "program build/$(PROJECT).elf verify reset"
upload-pi: build/$(PROJECT).bin
openocd -f pi_stm32.cfg -c "reset_config trst_only combined" -c "program build/$(PROJECT).elf verify reset exit"
upload-pi-remote: build/$(PROJECT).elf
./upload_remote_pi build/$(PROJECT).elf ted 10.42.0.199 22
2014-01-09 06:20:26 -08:00
debug-start:
openocd -f stm32-bv_openocd.cfg
RULESPATH = $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC
include $(RULESPATH)/rules.mk