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

59 lines
2.2 KiB
Makefile
Raw Normal View History

2023-02-09 04:14:39 +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_h7/Include
CFLAGS += -mcpu=cortex-m7 -mthumb -mfloat-abi=hard -mfpu=fpv5-d16 $(CFLAGS_EXTRA)
2023-02-09 04:14:39 +08:00
LDFLAGS ?= -Tlink.ld -nostdlib -nostartfiles --specs nano.specs -lc -lgcc -Wl,--gc-sections -Wl,-Map=$@.map
2023-11-08 03:47:04 +08:00
SOURCES = main.c syscalls.c sysinit.c
2023-02-09 04:14:39 +08:00
SOURCES += cmsis_h7/Source/Templates/gcc/startup_stm32h743xx.s # ST startup file. Compiler-dependent!
2023-11-08 03:47:04 +08:00
# Mongoose options are defined in mongoose_custom.h
SOURCES += mongoose.c net.c packed_fs.c
2023-05-30 05:38:49 +08:00
# Example specific build options. See README.md
2023-07-25 22:03:01 +08:00
CFLAGS += -DHTTP_URL=\"http://0.0.0.0/\" -DHTTPS_URL=\"https://0.0.0.0/\"
2023-05-30 05:38:49 +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
all build example: firmware.bin
firmware.bin: firmware.elf
arm-none-eabi-objcopy -O binary $< $@
2023-07-25 22:03:01 +08:00
firmware.elf: cmsis_core cmsis_h7 $(SOURCES) hal.h link.ld Makefile
arm-none-eabi-gcc $(SOURCES) $(CFLAGS) $(LDFLAGS) -o $@
flash: firmware.bin
2023-02-09 04:14:39 +08:00
st-flash --reset write $< 0x8000000
2023-02-11 04:21:17 +08:00
cmsis_core: # ARM CMSIS core headers
2023-02-09 04:14:39 +08:00
git clone --depth 1 -b 5.9.0 https://github.com/ARM-software/CMSIS_5 $@
2023-02-11 04:21:17 +08:00
cmsis_h7: # ST CMSIS headers for STM32H7 series
git clone --depth 1 -b v1.10.3 https://github.com/STMicroelectronics/cmsis_device_h7 $@
2023-07-25 22:03:01 +08:00
mbedtls: # mbedTLS library
git clone --depth 1 -b v2.28.2 https://github.com/mbed-tls/mbedtls $@
ifeq ($(TLS), mbedtls)
CFLAGS += -DMG_TLS=MG_TLS_MBED -Wno-conversion -Imbedtls/include
CFLAGS += -DMBEDTLS_CONFIG_FILE=\"mbedtls_config.h\" mbedtls/library/*.c
firmware.elf: mbedtls
endif
2023-02-09 04:14:39 +08:00
# 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/6
update: firmware.bin
curl --fail-with-body -su :$(VCON_API_KEY) $(DEVICE_URL)/ota --data-binary @$<
2023-08-05 01:32:28 +08:00
test update: CFLAGS += -DUART_DEBUG=USART1
2023-02-09 04:14:39 +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
clean:
2023-07-25 22:26:47 +08:00
$(RM) firmware.* *.su cmsis_core cmsis_h7 mbedtls