TI's CC3100 websocket camera demo with Arducam mini ov5642 and freertos. Should work with other M3's. Work in progress test demo.

Dependencies:   mbed

Revision:
0:400d8e75a8d0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/http/server/strlib.h	Sun Sep 06 15:19:36 2015 +0000
@@ -0,0 +1,34 @@
+//*****************************************************************************
+// Copyright (C) 2014 Texas Instruments Incorporated
+//
+// All rights reserved. Property of Texas Instruments Incorporated.
+// Restricted rights to use, duplicate or disclose this code are
+// granted through contract.
+// The program may not be used without the written permission of
+// Texas Instruments Incorporated or against the terms and conditions
+// stipulated in the agreement under which this program has been supplied,
+// and under no circumstances can it be used with non-TI connectivity device.
+//
+//*****************************************************************************
+
+#ifndef __STRLIB__
+#define __STRLIB__
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+char *itoa(int n, char *s, int b);
+char *strrev(char *str);
+void WordToBytes(void *pBuff, void const*pvalue, unsigned int NumBytes);
+int String_utoa(int uNum, char *pString);
+int iptostring(unsigned char *ip, char *ipstring);
+
+#ifdef  __cplusplus
+}
+#endif /* __cplusplus */
+#endif
+
+
+
+