Files
lab-rv32i-freertos-schedule…/tests/host-shim/FreeRTOS.h
T

13 lines
203 B
C

#ifndef K04_HOST_FREERTOS_H
#define K04_HOST_FREERTOS_H
#include <stdint.h>
typedef int32_t BaseType_t;
typedef uint32_t UBaseType_t;
typedef uint32_t TickType_t;
typedef void * TaskHandle_t;
#endif