feat: add lab-rv32i-freertos-allocator-resource card

This commit is contained in:
user
2026-07-21 19:13:55 +02:00
commit 5432095596
65 changed files with 34038 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef K06_HOST_FREERTOS_H
#define K06_HOST_FREERTOS_H
#include <stddef.h>
#define portBYTE_ALIGNMENT 8U
#define portBYTE_ALIGNMENT_MASK ( portBYTE_ALIGNMENT - 1U )
#ifdef __cplusplus
extern "C" {
#endif
void * pvPortMalloc( size_t bytes );
void vPortFree( void * memory );
#ifdef __cplusplus
}
#endif
#endif