Update revision to use TI's mqtt and Freertos.
Dependencies: mbed client server
Fork of cc3100_Test_mqtt_CM3 by
Diff: cli_uart.h
- Revision:
- 0:dbe5e7db3c45
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cli_uart.h Sat Jun 06 13:32:15 2015 +0000
@@ -0,0 +1,24 @@
+
+
+#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
+
