mongoose/examples/stm32/nucleo-f429zi-make-baremetal-builtin/Makefile

54 lines
2.2 KiB
Makefile
Raw Normal View History

2023-02-11 02:53:55 +08:00
CFLAGS = -W -Wall -Wextra -Werror -Wundef -Wshadow -Wdouble-promotion
CFLAGS += -Wformat-truncation -fno-common -Wconversion -Wno-sign-conversion
CFLAGS += -g3 -Os -ffunction-sections -fdata-sections
CFLAGS += -I. -Icmsis_core/CMSIS/Core/Include -Icmsis_f4/Include
CFLAGS += -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16
LDFLAGS ?= -Tlink.ld -nostdlib -nostartfiles --specs nano.specs -lc -lgcc -Wl,--gc-sections -Wl,-Map=$@.map
2023-02-11 02:53:55 +08:00
SOURCES = main.c syscalls.c sysinit.c
SOURCES += cmsis_f4/Source/Templates/gcc/startup_stm32f429xx.s # ST startup file. Compiler-dependent!
# Mongoose-specific source code files and build options. See https://mongoose.ws/documentation/#build-options
SOURCES += mongoose.c net.c packed_fs.c
CFLAGS += -DMG_ENABLE_TCPIP=1 -DMG_ARCH=MG_ARCH_NEWLIB -DMG_ENABLE_CUSTOM_MILLIS=1
2023-07-20 21:36:10 +08:00
CFLAGS += -DMG_ENABLE_CUSTOM_RANDOM=1 -DMG_ENABLE_PACKED_FS=1 -DMG_ENABLE_DRIVER_STM32=1 $(CFLAGS_EXTRA)
2023-02-11 02:53:55 +08:00
2023-05-30 05:38:49 +08:00
# Example specific build options. See README.md
CFLAGS += -DHTTP_URL=\"http://0.0.0.0/\"
2023-02-11 02:53:55 +08:00
ifeq ($(OS),Windows_NT)
RM = cmd /C del /Q /F /S
else
RM = rm -rf
endif
2022-08-30 02:15:48 +08:00
2023-01-20 05:42:06 +08:00
all build example: firmware.bin
2022-08-30 02:15:48 +08:00
2023-01-20 05:42:06 +08:00
firmware.bin: firmware.elf
arm-none-eabi-objcopy -O binary $< $@
2022-08-30 02:15:48 +08:00
2023-02-11 02:53:55 +08:00
firmware.elf: cmsis_core cmsis_f4 $(SOURCES) hal.h link.ld
2023-01-20 05:42:06 +08:00
arm-none-eabi-gcc $(SOURCES) $(CFLAGS) $(LDFLAGS) -o $@
2022-08-30 02:15:48 +08:00
2023-01-20 05:42:06 +08:00
flash: firmware.bin
st-flash --reset write $< 0x8000000
2023-02-11 02:53:55 +08:00
cmsis_core: # ARM CMSIS core headers
git clone --depth 1 -b 5.9.0 https://github.com/ARM-software/CMSIS_5 $@
2023-02-11 08:04:34 +08:00
cmsis_f4: # ST CMSIS headers for STM32F4 series
2023-02-11 02:53:55 +08:00
git clone --depth 1 -b v2.6.8 https://github.com/STMicroelectronics/cmsis_device_f4 $@
2023-02-11 02:53:55 +08:00
# Automated remote test. Requires env variable VCON_API_KEY set. See https://vcon.io/automated-firmware-tests/
2023-01-20 05:42:06 +08:00
DEVICE_URL ?= https://dash.vcon.io/api/v3/devices/2
update: firmware.bin
curl --fail-with-body -su :$(VCON_API_KEY) $(DEVICE_URL)/ota --data-binary @$<
2022-08-30 02:15:48 +08:00
2023-02-11 02:53:55 +08:00
test update: CFLAGS_EXTRA += -DUART_DEBUG=USART1
test: update
curl --fail-with-body -su :$(VCON_API_KEY) $(DEVICE_URL)/tx?t=5 | tee /tmp/output.txt
2023-02-11 02:53:55 +08:00
grep 'READY, IP:' /tmp/output.txt # Check for network init
2023-05-27 07:58:54 +08:00
# grep 'MQTT connected' /tmp/output.txt # Check for MQTT connection success
2022-08-30 02:15:48 +08:00
clean:
2023-02-11 02:53:55 +08:00
$(RM) firmware.* *.su cmsis_core cmsis_f4