16 lines
402 B
C
16 lines
402 B
C
#ifndef __OSPORT_H
|
|
#define __OSPORT_H
|
|
|
|
#include "FreeRTOS.h"
|
|
#include "queue.h"
|
|
|
|
|
|
/********************************************************************************
|
|
*对外接口函数声明
|
|
*********************************************************************************/
|
|
extern BaseType_t OsPort_xQueueSendToBack( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait) ;
|
|
|
|
#endif
|
|
|
|
|