feat: add lab-rv32i-freertos-allocator-resource card
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user