11 lines
272 B
C
11 lines
272 B
C
#ifndef K09_HOST_FREERTOS_H
|
|
#define K09_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;
|
|
#define pdFALSE ( ( BaseType_t ) 0 )
|
|
#define pdTRUE ( ( BaseType_t ) 1 )
|
|
#endif
|