freertos test

This commit is contained in:
Ajit Ananthadevan 2025-08-24 23:25:50 +10:00
parent 2535a7c089
commit 375ab76a2e
6 changed files with 601 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