Update revision to use TI's mqtt and Freertos.

Dependencies:   mbed client server

Fork of cc3100_Test_mqtt_CM3 by David Fletcher

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 #ifdef __cplusplus
00007 extern "C" {
00008 #endif
00009 
00010 #define RTOS_MUTEX_CREATE(x)        osi_LockObjCreate(x)
00011 #define RTOS_MUTEX_ACQUIRE(x)       osi_LockObjLock(x, (OsiTime_t) OSI_WAIT_FOREVER)
00012 #define RTOS_MUTEX_RELEASE(x)       osi_LockObjUnlock(x)
00013 #define RTOS_MUTEX_DELETE(x)        osi_LockObjDelete(x) 
00014 
00015 int32_t Uart_Write(unsigned char *inBuff);
00016 
00017 void CLI_Configure(void);
00018 
00019 #ifdef  __cplusplus
00020 }
00021 #endif /*  __cplusplus */
00022 
00023 #endif
00024