#ifndef K13_HOST_FREERTOS_H #define K13_HOST_FREERTOS_H #include 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