16 lines
402 B
C
16 lines
402 B
C
|
#ifndef __OSPORT_H
|
|||
|
#define __OSPORT_H
|
|||
|
|
|||
|
#include "FreeRTOS.h"
|
|||
|
#include "queue.h"
|
|||
|
|
|||
|
|
|||
|
/********************************************************************************
|
|||
|
*<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӿں<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
*********************************************************************************/
|
|||
|
extern BaseType_t OsPort_xQueueSendToBack( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait) ;
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
|