mongoose/examples/stm32/nucleo-f746zg-freertos/Makefile

57 lines
2.3 KiB
Makefile
Raw Normal View History

2023-02-07 10:10:30 +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_f7/Include
CFLAGS += -mcpu=cortex-m7 -mthumb -mfloat-abi=hard -mfpu=fpv5-sp-d16
LDFLAGS ?= -Tlink.ld -nostdlib -nostartfiles --specs nano.specs -lc -lgcc -Wl,--gc-sections -Wl,-Map=$@.map
SOURCES = main.c syscalls.c sysinit.c
SOURCES += cmsis_f7/Source/Templates/gcc/startup_stm32f746xx.s # ST startup file. Compiler-dependent!
# FreeRTOS
SOURCES += FreeRTOS-Kernel/portable/MemMang/heap_4.c
SOURCES += FreeRTOS-Kernel/portable/GCC/ARM_CM7/r0p1/port.c
CFLAGS += -IFreeRTOS-Kernel/include
CFLAGS += -IFreeRTOS-Kernel/portable/GCC/ARM_CM7/r0p1 -Wno-conversion
2023-02-11 07:06:25 +08:00
SOURCES += mongoose.c net.c packed_fs.c
2023-02-13 04:31:02 +08:00
CFLAGS += $(CFLAGS_EXTRA) # Mongoose options are defined in mongoose_custom.h
2023-02-07 10:10:30 +08:00
2023-02-11 04:21:17 +08:00
ifeq ($(OS),Windows_NT)
RM = cmd /C del /Q /F /S
else
RM = rm -rf
endif
2023-02-07 10:10:30 +08:00
all build example: firmware.bin
2022-11-24 03:40:57 +08:00
firmware.bin: firmware.elf
2023-01-21 05:15:26 +08:00
arm-none-eabi-objcopy -O binary $< $@
2022-11-24 03:40:57 +08:00
2023-02-07 10:10:30 +08:00
firmware.elf: FreeRTOS-Kernel cmsis_core cmsis_f7 $(SOURCES) hal.h link.ld
arm-none-eabi-gcc $(SOURCES) $(wildcard FreeRTOS-Kernel/*.c) $(CFLAGS) $(LDFLAGS) -o $@
2022-11-24 03:40:57 +08:00
flash: firmware.bin
2023-02-07 10:10:30 +08:00
st-flash --reset write $< 0x8000000
2023-02-11 07:52:55 +08:00
cmsis_core: # ARM CMSIS core headers
2023-02-07 10:10:30 +08:00
git clone --depth 1 -b 5.9.0 https://github.com/ARM-software/CMSIS_5 $@
2023-02-11 08:24:42 +08:00
cmsis_f7: # ST CMSIS headers for STM32F7 series
git clone --depth 1 -b v1.2.8 https://github.com/STMicroelectronics/cmsis_device_f7 $@
2023-02-07 10:10:30 +08:00
FreeRTOS-Kernel: # FreeRTOS sources
git clone --depth 1 -b V10.5.0 https://github.com/FreeRTOS/FreeRTOS-Kernel $@
# Automated remote test. Requires env variable VCON_API_KEY set. See https://vcon.io/automated-firmware-tests/
DEVICE_URL ?= https://dash.vcon.io/api/v3/devices/5
update: firmware.bin
curl --fail-with-body -su :$(VCON_API_KEY) $(DEVICE_URL)/ota --data-binary @$<
2022-11-24 03:40:57 +08:00
2023-02-11 08:24:42 +08:00
test update: CFLAGS_EXTRA += -DUART_DEBUG=USART1
2023-02-07 10:10:30 +08:00
test: update
curl --fail-with-body -su :$(VCON_API_KEY) $(DEVICE_URL)/tx?t=5 | tee /tmp/output.txt
grep 'READY, IP:' /tmp/output.txt # Check for network init
2023-05-27 01:43:36 +08:00
# grep 'MQTT connected' /tmp/output.txt # Check for MQTT connection success
2022-11-24 03:40:57 +08:00
clean:
2023-02-11 04:21:17 +08:00
$(RM) firmware.* *.su cmsis_core cmsis_f7 FreeRTOS-Kernel