diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-02-24 14:06:59 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-02-24 14:06:59 +0100 |
commit | b69ddf1cd7123cc26b3936eda3c7c96a2750e612 (patch) | |
tree | 9ca68b0fb0aebe4cbd68f22f35e3da298baf8d5c /src/stm32/idle_task_static_memory.h | |
parent | f3a47bde9bfaaa716de835c0c1499a685b4ac4f7 (diff) |
rename and move files
Diffstat (limited to 'src/stm32/idle_task_static_memory.h')
-rw-r--r-- | src/stm32/idle_task_static_memory.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stm32/idle_task_static_memory.h b/src/stm32/idle_task_static_memory.h new file mode 100644 index 0000000..24712fa --- /dev/null +++ b/src/stm32/idle_task_static_memory.h @@ -0,0 +1,8 @@ +#pragma once + +#include <FreeRTOS.h> +#include <FreeRTOSConfig.h> +#include <task.h> + +void vApplicationGetIdleTaskMemory(StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize); +void vApplicationGetTimerTaskMemory(StaticTask_t ** ppxTimerTaskTCBBuffer, StackType_t ** ppxTimerTaskStackBuffer, uint32_t * pulTimerTaskStackSize); |