12 lines
192 B
C
12 lines
192 B
C
#ifndef K11_HOST_TASK_H
|
|
#define K11_HOST_TASK_H
|
|
#include "FreeRTOS.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
TaskHandle_t xTaskGetCurrentTaskHandle( void );
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|