TI's MQTT Demo with freertos CM4F

Dependencies:   mbed

cli_uart.h

Committer:
dflet
Date:
2015-09-03
Revision:
0:1e7b5dd9edb4

File content as of revision 0:1e7b5dd9edb4:



#ifndef cli_uart_H
#define cli_uart_H


#define RTOS_MUTEX_CREATE(x)        osi_LockObjCreate(x)
#define RTOS_MUTEX_ACQUIRE(x)       osi_LockObjLock(x, (OsiTime_t) OSI_WAIT_FOREVER)
#define RTOS_MUTEX_RELEASE(x)       osi_LockObjUnlock(x)
#define RTOS_MUTEX_DELETE(x)        osi_LockObjDelete(x)

int32_t Uart_Write(unsigned char *inBuff);

void CLI_Configure(void);




#endif