TI's MQTT Demo with freertos CM4F

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers cli_uart.h Source File

cli_uart.h

00001 
00002 
00003 #ifndef cli_uart_H
00004 #define cli_uart_H
00005 
00006 
00007 #define RTOS_MUTEX_CREATE(x)        osi_LockObjCreate(x)
00008 #define RTOS_MUTEX_ACQUIRE(x)       osi_LockObjLock(x, (OsiTime_t) OSI_WAIT_FOREVER)
00009 #define RTOS_MUTEX_RELEASE(x)       osi_LockObjUnlock(x)
00010 #define RTOS_MUTEX_DELETE(x)        osi_LockObjDelete(x)
00011 
00012 int32_t Uart_Write(unsigned char *inBuff);
00013 
00014 void CLI_Configure(void);
00015 
00016 
00017 
00018 
00019 #endif
00020