Port of TI's CC3100 Websock camera demo. Using FreeRTOS, mbedTLS, also parts of Arducam for cams ov5642 and 0v2640. Can also use MT9D111. Work in progress. Be warned some parts maybe a bit flacky. This is for Seeed Arch max only, for an M3, see the demo for CM3 using the 0v5642 aducam mini.

Dependencies:   mbed

Revision:
0:50cedd586816
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/utils/cli_uart.h	Wed Jun 24 09:54:16 2015 +0000
@@ -0,0 +1,22 @@
+
+
+#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);
+
+extern void Message(const char *format);
+
+extern int Report(const char *format, ...);
+
+
+#endif
+