make template

This commit is contained in:
Ajit Ananthadevan 2025-08-25 01:07:22 +10:00
parent 7f4f50f9b7
commit c1b2bd232d
5 changed files with 428 additions and 0 deletions

View file

@ -0,0 +1,15 @@
C_SOURCES += \
$(VND_DIR)/STM32CubeG0/Middlewares/Third_Party/FreeRTOS/Source/croutine.c \
$(VND_DIR)/STM32CubeG0/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c \
$(VND_DIR)/STM32CubeG0/Middlewares/Third_Party/FreeRTOS/Source/list.c \
$(VND_DIR)/STM32CubeG0/Middlewares/Third_Party/FreeRTOS/Source/queue.c \
$(VND_DIR)/STM32CubeG0/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c \
$(VND_DIR)/STM32CubeG0/Middlewares/Third_Party/FreeRTOS/Source/tasks.c \
$(VND_DIR)/STM32CubeG0/Middlewares/Third_Party/FreeRTOS/Source/timers.c \
$(VND_DIR)/STM32CubeG0/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0/port.c \
$(VND_DIR)/STM32CubeG0/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c
C_INCLUDES += \
-I$(VND_DIR)/STM32CubeG0/Middlewares/Third_Party/FreeRTOS/Source/include \
-I$(VND_DIR)/STM32CubeG0/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0