1
0
mirror of https://github.com/rene-dev/stmbl.git synced 2024-12-18 22:52:08 +00:00
stmbl/Makefile

467 lines
13 KiB
Makefile
Raw Permalink Normal View History

2016-01-09 16:09:19 +00:00
# Optimization level, can be [0, 1, 2, 3, s].
2015-12-30 07:14:51 +00:00
# 0 = turn off optimization. s = optimize for size.
2016-01-09 16:09:19 +00:00
#
2017-01-03 21:51:05 +00:00
OPT = -O1
2015-12-30 07:14:51 +00:00
# OPT = -O1 # for debugging
# Object files directory
# Warning: this will be removed by make clean!
#
OBJDIR = obj_app
# Target file name (without extension)
TARGET = $(OBJDIR)/stmbl
# Define all C source files (dependencies are generated automatically)
INCDIRS += inc
2020-09-23 15:25:01 +00:00
INCDIRS += inc/comps
INCDIRS += inc/comps/hw
INCDIRS += inc/shared_comps
2015-12-30 07:14:51 +00:00
INCDIRS += shared
SOURCES += src/main.c
SOURCES += src/stm32f4xx_it.c
2017-01-18 13:38:39 +00:00
SOURCES += src/system_stm32f4xx.c #TODO: update this, system file from cmsis
2015-12-30 07:14:51 +00:00
SOURCES += src/setup.c
SOURCES += src/usb_cdc.c
2018-03-16 02:25:00 +00:00
SOURCES += src/config.c
2017-04-14 08:34:16 +00:00
# SOURCES += src/hal_conf.c
SOURCES += src/hal_tbl.c
2017-10-30 00:39:05 +00:00
HWVERSION = v4
ifeq ($(HWVERSION),v3)
SRC_COMPS += src/comps/hw/io3.c
SRC_COMPS += src/comps/hvf1.c
SHARED_COMPS += shared/comps/pmsm.c
SHARED_COMPS += shared/comps/curpid.c
SHARED_COMPS += shared/comps/dq.c
SHARED_COMPS += shared/comps/idq.c
SHARED_COMPS += shared/common_f1.c
2017-10-30 01:58:09 +00:00
CFLAGS += -DV3
2017-10-30 00:39:05 +00:00
else
SRC_COMPS += src/comps/hw/io4.c
SRC_COMPS += src/comps/hv.c
2017-10-30 00:39:05 +00:00
#TODO: need backport to v3
SRC_COMPS += src/comps/enc_cmd.c
SRC_COMPS += src/comps/o_fb.c
SRC_COMPS += src/comps/sserial.c
SRC_COMPS += src/comps/yaskawa.c
SRC_COMPS += src/comps/encs.c
SRC_COMPS += src/comps/encf.c
SRC_COMPS += src/comps/endat.c
2017-10-30 01:58:09 +00:00
CFLAGS += -DV4
2017-10-30 00:39:05 +00:00
endif
SRC_COMPS += src/comps/usart.c
SRC_COMPS += src/comps/encm.c
SRC_COMPS += src/comps/dmm.c
SRC_COMPS += src/comps/smartabs.c
SRC_COMPS += src/comps/adc.c
SRC_COMPS += src/comps/enc_fb.c
SRC_COMPS += src/comps/conf.c
SRC_COMPS += src/comps/res.c
SRC_COMPS += src/comps/hx711.c
SHARED_COMPS += shared/comps/sim.c
SHARED_COMPS += shared/comps/term.c
SHARED_COMPS += shared/comps/svm.c
SHARED_COMPS += shared/comps/vel.c
SHARED_COMPS += shared/comps/rev.c
SHARED_COMPS += shared/comps/hal_test.c
# SHARED_COMPS += shared/comps/dc.c
SHARED_COMPS += shared/comps/ypid.c
SHARED_COMPS += shared/comps/fault.c
SHARED_COMPS += shared/comps/pid.c
SHARED_COMPS += shared/comps/spid.c
SHARED_COMPS += shared/comps/pe.c
SHARED_COMPS += shared/comps/pmsm_limits.c
SHARED_COMPS += shared/comps/pmsm_ttc.c
SHARED_COMPS += shared/comps/dc_limits.c
SHARED_COMPS += shared/comps/dc_ttc.c
SHARED_COMPS += shared/comps/acim_ttc.c
SHARED_COMPS += shared/comps/uvw.c
SHARED_COMPS += shared/comps/fanuc.c
SHARED_COMPS += shared/comps/fb_switch.c
SHARED_COMPS += shared/comps/reslimit.c
SHARED_COMPS += shared/comps/iit.c
SHARED_COMPS += shared/comps/vel_int.c
SHARED_COMPS += shared/comps/linrev.c
SHARED_COMPS += shared/comps/psi.c
SHARED_COMPS += shared/comps/stp.c
#SHARED_COMPS += shared/comps/uf.c
SHARED_COMPS += shared/comps/uf2.c
SHARED_COMPS += shared/comps/ramp.c
SHARED_COMPS += shared/comps/scale.c
SHARED_COMPS += shared/comps/idx_home.c
SHARED_COMPS += shared/comps/move.c
# SHARED_COMPS += shared/comps/ac.c
SHARED_COMPS += shared/comps/not.c
SHARED_COMPS += shared/comps/and.c
SHARED_COMPS += shared/comps/or.c
SHARED_COMPS += shared/comps/jog.c
SHARED_COMPS += shared/comps/velbuf.c
SHARED_COMPS += shared/comps/avg.c
SHARED_COMPS += shared/comps/mux.c
SHARED_COMPS += shared/comps/veltopos.c
# SHARED_COMPS += shared/comps/wobl.c
SHARED_COMPS += shared/comps/debounce.c
SHARED_COMPS += shared/comps/pos_filter.c
SHARED_COMPS += shared/comps/rl.c
SHARED_COMPS += shared/comps/mad.c
SHARED_COMPS += shared/comps/sensorless.c
SHARED_COMPS += shared/comps/field.c
SHARED_COMPS += shared/comps/gain.c
SHARED_COMPS += shared/comps/rlpsij.c
SHARED_COMPS += shared/comps/veltime.c
SHARED_COMPS += shared/comps/mpid.c
SHARED_COMPS += shared/comps/fmove.c
SHARED_COMPS += shared/comps/home.c
SHARED_COMPS += shared/comps/en.c
SHARED_COMPS += shared/comps/th.c
2021-07-02 00:22:45 +00:00
#SHARED_COMPS += shared/comps/asm.c
2021-08-26 19:25:16 +00:00
SHARED_COMPS += shared/comps/idpmsm.c
SHARED_COMPS += shared/comps/iddc.c
2021-07-13 18:54:45 +00:00
SHARED_COMPS += shared/comps/idm.c
2021-08-26 19:25:16 +00:00
SHARED_COMPS += shared/comps/ids.c
2021-07-13 18:54:45 +00:00
#SHARED_COMPS += shared/comps/motsim.c
COMPS = $(SRC_COMPS) $(SHARED_COMPS)
2017-07-01 00:48:57 +00:00
SOURCES += $(COMPS)
2017-04-14 08:34:16 +00:00
2017-07-19 11:04:47 +00:00
# SOURCES += src/eeprom.c
2017-04-14 08:34:16 +00:00
# SOURCES += src/link.c
2015-12-30 07:14:51 +00:00
SOURCES += src/version.c
SOURCES += src/syscalls.c
2022-01-02 08:08:23 +00:00
SOURCES += shared/crc.c
2015-12-30 07:14:51 +00:00
SOURCES += shared/crc8.c
2018-02-08 17:09:48 +00:00
SOURCES += shared/yaskawa_crc16.c
2019-07-01 11:53:31 +00:00
SOURCES += shared/endat.c
2017-01-05 22:28:09 +00:00
SOURCES += shared/angle.c
SOURCES += shared/hal.c
SOURCES += shared/commands.c
2017-07-12 20:11:18 +00:00
SOURCES += shared/config.c
SOURCES += src/conf_templates.c
2017-01-10 00:56:32 +00:00
SOURCES += shared/ringbuf.c
2015-12-30 07:14:51 +00:00
CONFIG_TEMPLATES = $(wildcard conf/template/*.txt)
USB_VCP_DIR = lib/STM32_USB_Device_VCP-1.2.0
CPPFLAGS += -DUSBD_PRODUCT_STRING='"STMBL Virtual ComPort"'
CPPFLAGS += -DCDC_IN_FRAME_INTERVAL=1
CPPFLAGS += -DAPP_RX_DATA_SIZE=4096
INCDIRS += $(USB_VCP_DIR)/inc
SOURCES += $(USB_VCP_DIR)/src/usbd_desc.c
USB_DEVICE_DIR = lib/STM32_USB_Device_Library-1.2.0
INCDIRS += $(USB_DEVICE_DIR)/Class/cdc/inc
SOURCES += $(USB_DEVICE_DIR)/Class/cdc/src/usbd_cdc_core.c
INCDIRS += $(USB_DEVICE_DIR)/Core/inc
SOURCES += $(USB_DEVICE_DIR)/Core/src/usbd_core.c
SOURCES += $(USB_DEVICE_DIR)/Core/src/usbd_ioreq.c
SOURCES += $(USB_DEVICE_DIR)/Core/src/usbd_req.c
USB_DRIVER_DIR = lib/STM32_USB_OTG_Driver-2.2.0
INCDIRS += $(USB_DRIVER_DIR)/inc
SOURCES += $(USB_DRIVER_DIR)/src/usb_core.c
SOURCES += $(USB_DRIVER_DIR)/src/usb_dcd.c
SOURCES += $(USB_DRIVER_DIR)/src/usb_dcd_int.c
2015-12-30 07:14:51 +00:00
# Standard peripheral library
CPPFLAGS += -DUSE_STDPERIPH_DRIVER
#CPPFLAGS += -DUSE_FULL_ASSERT
2016-01-09 16:09:19 +00:00
PERIPH_DRV_DIR = lib/STM32F4xx_StdPeriph_Driver-V1.6.0
INCDIRS += $(PERIPH_DRV_DIR)/inc
INCDIRS += lib/CMSIS/Include
INCDIRS += lib/CMSIS/Device/ST/STM32F4xx/Include
2016-01-09 16:09:19 +00:00
SOURCES += $(PERIPH_DRV_DIR)/src/stm32f4xx_adc.c
SOURCES += $(PERIPH_DRV_DIR)/src/stm32f4xx_crc.c
SOURCES += $(PERIPH_DRV_DIR)/src/stm32f4xx_dma.c
SOURCES += $(PERIPH_DRV_DIR)/src/stm32f4xx_flash.c
SOURCES += $(PERIPH_DRV_DIR)/src/stm32f4xx_gpio.c
SOURCES += $(PERIPH_DRV_DIR)/src/stm32f4xx_pwr.c
SOURCES += $(PERIPH_DRV_DIR)/src/stm32f4xx_rcc.c
SOURCES += $(PERIPH_DRV_DIR)/src/stm32f4xx_tim.c
SOURCES += $(PERIPH_DRV_DIR)/src/stm32f4xx_usart.c
SOURCES += $(PERIPH_DRV_DIR)/src/stm32f4xx_spi.c
2016-01-09 16:09:19 +00:00
SOURCES += $(PERIPH_DRV_DIR)/src/misc.c
SOURCES += lib/CMSIS/Device/ST/STM32F4xx/Source/startup_stm32f40_41xxx.s
CPPFLAGS += -DSTM32F40_41xxx
2016-01-02 21:11:42 +00:00
CPPFLAGS += -DHSE_VALUE=8000000
2015-12-30 07:14:51 +00:00
LDSCRIPT = stm32_flash.ld
#============================================================================
SRC_COMP_OBJECTS = $(addprefix $(OBJDIR)/,$(addsuffix .o,$(basename $(SRC_COMPS))))
SHARED_COMP_OBJECTS = $(addprefix $(OBJDIR)/,$(addsuffix .o,$(basename $(SHARED_COMPS))))
2015-12-30 07:14:51 +00:00
OBJECTS += $(addprefix $(OBJDIR)/,$(addsuffix .o,$(basename $(SOURCES))))
OBJECTS += hv_firmware.o
2015-12-30 07:14:51 +00:00
CPPFLAGS += $(addprefix -I,$(INCDIRS))
#---------------- Preprocessor Options ----------------
# -fsingle... make better use of the single-precision FPU
# -g generate debugging information
# -save-temps preserve .s and .i-files
#
CPPFLAGS += -fsingle-precision-constant
CPPFLAGS += -g
# CPPFLAGS += -save-temps=obj
#---------------- C Compiler Options ----------------
# -O* optimization level
# -f... tuning, see GCC documentation
# -Wall... warning level
#
CFLAGS += $(OPT)
CFLAGS += -std=gnu11
CFLAGS += -ffunction-sections
CFLAGS += -fdata-sections
CFLAGS += -Wall
2018-03-16 05:38:33 +00:00
CFLAGS += -Wmaybe-uninitialized
CFLAGS += -Wuninitialized
2015-12-30 07:14:51 +00:00
CFLAGS += -fno-builtin ## from old
CFLAGS += -nostartfiles
2016-02-15 14:28:30 +00:00
CFLAGS += -Wfatal-errors
2015-12-30 07:14:51 +00:00
#CFLAGS += -Wstrict-prototypes
#CFLAGS += -Wextra
#CFLAGS += -Wpointer-arith
#CFLAGS += -Winline
#CFLAGS += -Wunreachable-code
#CFLAGS += -Wundef
# Use a friendly C dialect
CPPFLAGS += -fno-strict-aliasing
CPPFLAGS += -fwrapv
#---------------- C++ Compiler Options ----------------
#
CXXFLAGS += $(OPT)
CXXFLAGS += -ffunction-sections
CXXFLAGS += -fdata-sections
CXXFLAGS += -Wall
#---------------- Assembler Options ----------------
# -Wa,... tell GCC to pass this to the assembler
#
#---------------- Linker Options ----------------
# -Wl,... tell GCC to pass this to linker
# -Map create map file
# --cref add cross reference to map file
#
LDFLAGS += $(OPT)
LDFLAGS += -lm
LDFLAGS += -Wl,-Map=$(TARGET).map,--cref
LDFLAGS += -Wl,--gc-sections
# LDFLAGS += -specs=nano.specs -u _printf_float -u _scanf_float
LDFLAGS += -T$(LDSCRIPT)
#============================================================================
2018-04-07 00:00:04 +00:00
POSTLD = $(PYTHON) tools/add_version_info.py # -q
2015-12-30 07:14:51 +00:00
# Compiler flags to generate dependency files
#
GENDEPFLAGS = -MMD -MP
# Combine all necessary flags and optional flags
# Add target processor to flags.
#
CPU = -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16
CFLAGS += $(CPU)
CXXFLAGS += $(CPU)
ASFLAGS += $(CPU)
LDFLAGS += $(CPU)
2018-04-07 01:44:49 +00:00
ADDRESS = 0x08010000
2015-12-30 07:14:51 +00:00
# Default target
#
all: gccversion tbl boot build showsize
2015-12-30 07:14:51 +00:00
2018-04-09 11:33:41 +00:00
build: tbl elf hex bin lss sym f3_boot
2015-12-30 07:14:51 +00:00
elf: $(TARGET).elf
hex: $(TARGET).hex
bin: tbl $(TARGET).bin
2015-12-30 07:14:51 +00:00
lss: $(TARGET).lss
sym: $(TARGET).sym
$(OBJDIR)/shared/commands.o: inc/commandslist.h
2020-09-21 06:15:55 +00:00
2020-09-20 22:32:43 +00:00
inc/commandslist.h: tools/create_cmd.py $(SOURCES)
@echo Generating commands list
2020-09-27 04:22:53 +00:00
@$(MKDIR) -p $(dir $@)
@$(PYTHON) tools/create_cmd.py $@ $(SOURCES)
2017-02-27 20:37:21 +00:00
src/hal_tbl.c: tools/create_hal_tbl.py $(COMPS)
@echo Generating HAL table
2020-09-27 04:22:53 +00:00
@$(MKDIR) -p $(dir $@)
@$(PYTHON) tools/create_hal_tbl.py $@ $(COMPS)
$(SRC_COMP_OBJECTS): $(OBJDIR)/src/comps/%.o: inc/comps/%_comp.h
$(SHARED_COMP_OBJECTS): $(OBJDIR)/shared/comps/%.o: inc/shared_comps/%_comp.h
inc/comps/%_comp.h: src/comps/%.c
@echo Generating H: $<
2020-09-27 04:22:53 +00:00
@$(MKDIR) -p $(dir $@)
@$(PYTHON) tools/create_comp_h.py $@ $<
inc/shared_comps/%_comp.h: shared/comps/%.c
@echo Generating H: $<
2020-09-27 04:22:53 +00:00
@$(MKDIR) -p $(dir $@)
@$(PYTHON) tools/create_comp_h.py $@ $<
2020-09-20 22:32:43 +00:00
src/conf_templates.c: tools/create_config.py $(CONFIG_TEMPLATES)
@echo Generating config
2020-09-27 04:22:53 +00:00
@$(MKDIR) -p $(dir $@)
@$(PYTHON) tools/create_config.py src/conf_templates.c $(CONFIG_TEMPLATES)
2020-09-23 15:25:01 +00:00
tbl: inc/commandslist.h src/hal_tbl.c src/conf_templates.c
2017-02-27 20:37:21 +00:00
2020-09-20 22:32:43 +00:00
obj_boot/blboot.bin: force_look
2015-12-30 07:14:51 +00:00
$(MAKE) -f bootloader/Makefile
2020-09-20 22:32:43 +00:00
#build f4 bootloader
boot: obj_boot/blboot.bin
2018-04-09 11:33:41 +00:00
#flash f4 bootloader using stlink
2020-09-20 22:32:43 +00:00
boot_flash:
2015-12-30 07:14:51 +00:00
$(MAKE) -f bootloader/Makefile flash
2018-04-09 11:33:41 +00:00
#flash f4 bootloader using df-util
2020-09-20 22:32:43 +00:00
boot_btburn:
2018-04-09 11:33:41 +00:00
$(MAKE) -f bootloader/Makefile btburn
2015-12-30 07:14:51 +00:00
2018-04-09 11:33:41 +00:00
#build f3 bootloader
2020-09-20 22:32:43 +00:00
f3_boot: force_look
2018-04-09 11:33:41 +00:00
$(MAKE) -f f3_boot/Makefile
#flash f3 bootloader using stlink
f3_boot_flash:
$(MAKE) -f f3_boot/Makefile flash
#flash f3 bootloader using df-util
f3_boot_btburn:
$(MAKE) -f f3_boot/Makefile btburn
#build f3 firmware
2020-09-20 22:32:43 +00:00
f3: force_look
2017-09-10 11:59:15 +00:00
$(MAKE) -f stm32f303/Makefile
2018-04-09 11:33:41 +00:00
#flash f3 firmware using stlink
2017-09-10 11:59:15 +00:00
f3_flash:
$(MAKE) -f stm32f303/Makefile flash
2018-04-09 11:33:41 +00:00
#flash f3 firmware using df-util
2017-11-04 22:46:09 +00:00
f3_btburn:
2017-09-10 11:59:15 +00:00
$(MAKE) -f stm32f303/Makefile btburn
2018-03-18 22:33:52 +00:00
2018-04-09 11:33:41 +00:00
#generate f3 firmware object from f3 bin
2020-09-20 22:32:43 +00:00
hv_firmware.o: force_look
2018-04-06 22:45:24 +00:00
$(MAKE) -f stm32f303/Makefile all
2018-04-09 11:33:41 +00:00
#build f103 firmware for V3 hardware
2020-09-20 22:32:43 +00:00
f1: force_look
2018-04-09 11:33:41 +00:00
$(MAKE) -f stm32f103/Makefile
#flash f103 firmware for V3 hardware using stlink
f1_flash: boot
$(MAKE) -f stm32f103/Makefile flash
2020-09-20 22:32:43 +00:00
f3_all_btburn: f3.bin
2018-04-14 00:56:34 +00:00
@$(DFU-UTIL) -d 0483:df11 -a 0 -s 0x08000000:leave -D f3.bin
2020-09-20 22:32:43 +00:00
all_btburn: tools/bootloader.py f4.bin
2018-04-16 23:18:47 +00:00
@$(PYTHON) tools/bootloader.py
@sleep 1
2018-04-14 00:56:34 +00:00
@$(DFU-UTIL) -d 0483:df11 -a 0 -s 0x08000000:leave -D f4.bin
2020-09-20 22:32:43 +00:00
all_flash: f4.bin
2018-04-13 23:37:56 +00:00
@$(ST-FLASH) --reset write f4.bin 0x08000000
2020-09-20 22:32:43 +00:00
f3_all_flash: f3.bin
2018-04-13 23:37:56 +00:00
@$(ST-FLASH) --reset write f3.bin 0x08000000
2018-04-09 11:39:54 +00:00
deploy: f3_boot f3 boot build binall
2017-10-03 03:34:22 +00:00
f4.bin: obj_boot/blboot.bin conf/festo.txt $(TARGET).bin
cat obj_boot/blboot.bin /dev/zero | head -c 32768 > f4.bin
cat conf/festo.txt /dev/zero | head -c 32768 >> f4.bin
cat $(TARGET).bin >> f4.bin
2020-09-20 22:32:43 +00:00
f3.bin: obj_f3_boot/f3_boot.bin obj_hvf3/hvf3.bin
2018-03-23 03:52:57 +00:00
cat obj_f3_boot/f3_boot.bin /dev/zero | head -c 16384 > f3.bin
cat obj_hvf3/hvf3.bin >> f3.bin
2020-09-20 22:32:43 +00:00
# TODO: consolidate these two rules into a wildcard version?
f4.dfu: tools/dfu-convert.py f4.bin
2018-04-13 22:49:29 +00:00
$(PYTHON) tools/dfu-convert.py -b 0x08000000:f4.bin f4.dfu
2020-09-20 22:32:43 +00:00
f3.dfu: tools/dfu-convert.py f3.bin
2018-04-13 22:49:29 +00:00
$(PYTHON) tools/dfu-convert.py -b 0x08000000:f3.bin f3.dfu
2020-09-20 22:32:43 +00:00
stmbl.dfu: tools/dfu-convert.py $(TARGET).bin
$(PYTHON) tools/dfu-convert.py -b 0x08010000:$(TARGET).bin stmbl.dfu
binall: f4.dfu f3.dfu stmbl.dfu
2017-09-05 22:11:32 +00:00
format:
2018-03-23 03:52:57 +00:00
find src/ f3_boot/ bootloader/ stm32f103/ stm32f303/ shared/ inc/ tools/ -iname '*.h' -o -iname '*.c' | xargs clang-format -i
2015-12-30 07:14:51 +00:00
# Target: clean project
#
2013-12-09 22:04:24 +00:00
clean:
2015-12-30 07:14:51 +00:00
@echo Cleaning project:
rm -rf hv_firmware.o
2020-09-20 22:32:43 +00:00
rm -rf f3.bin f4.bin f3.dfu f4.dfu stmbl.dfu
2015-12-30 07:14:51 +00:00
rm -rf $(OBJDIR)
2017-02-27 20:45:50 +00:00
rm -rf inc/commandslist.h
2020-09-23 15:25:01 +00:00
rm -rf inc/comps/*
rm -rf inc/shared_comps/*
2017-07-12 22:50:54 +00:00
rm -rf src/conf_templates.c
2020-09-23 15:25:01 +00:00
rm -rf src/hal_tbl.c
2015-12-30 07:14:51 +00:00
@$(MAKE) -f bootloader/Makefile clean
2018-03-23 03:52:57 +00:00
@$(MAKE) -f f3_boot/Makefile clean
2015-12-30 07:14:51 +00:00
@$(MAKE) -f stm32f103/Makefile clean
2017-10-03 03:34:22 +00:00
@$(MAKE) -f stm32f303/Makefile clean
2015-12-30 07:14:51 +00:00
# Include the base rules
#
include base.mak
# Include the dependency files
#
-include $(OBJECTS:.o=.d)
2020-09-20 22:32:43 +00:00
force_look:
@true
2015-12-30 07:14:51 +00:00
# Listing of phony targets
#
2020-09-20 21:53:33 +00:00
.PHONY: all build clean \
elf hex bin lss sym tbl \
boot boot_flash boot_brburn \
f3_boot f3_boot_flash f3_boot_btburn \
f3 f3_flash f3_btburn \
f1 f1_flash \
f3_all_btburn all_btburn all_flash f3_all_flash \
deploy \
2020-09-20 22:32:43 +00:00
format \
force_look