Update revision to use TI's mqtt and Freertos.
Dependencies: mbed client server
Fork of cc3100_Test_mqtt_CM3 by
cli_uart.h
- Committer:
- dflet
- Date:
- 2015-06-06
- Revision:
- 0:dbe5e7db3c45
File content as of revision 0:dbe5e7db3c45:
#ifndef cli_uart_H
#define cli_uart_H
#ifdef __cplusplus
extern "C" {
#endif
#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);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif
