Files
lab-rv32i-freertos-event-group/tests/host-shim/FreeRTOS.h
T

10 lines
243 B
C

#ifndef K13_HOST_FREERTOS_H
#define K13_HOST_FREERTOS_H
#include <stdint.h>
typedef int32_t BaseType_t;
typedef uint32_t TickType_t;
typedef uint32_t EventBits_t;
#define pdFALSE ( ( BaseType_t ) 0 )
#define pdTRUE ( ( BaseType_t ) 1 )
#endif