Files
lab-rv32i-freertos-static-task/tests/host-shim/FreeRTOS.h
T

15 lines
389 B
C

#ifndef K08_HOST_FREERTOS_H
#define K08_HOST_FREERTOS_H
#include <stddef.h>
#include <stdint.h>
typedef int32_t BaseType_t;
typedef uint32_t UBaseType_t;
typedef uint32_t configSTACK_DEPTH_TYPE;
typedef uint32_t StackType_t;
typedef void * TaskHandle_t;
typedef struct { uint32_t words[ 24 ]; } StaticTask_t;
#define pdPASS ( ( BaseType_t ) 1 )
#define pdFAIL ( ( BaseType_t ) 0 )
#endif