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:
3:7643714ec664
Parent:
0:50cedd586816
--- a/utils/Led_config.h	Fri Jun 26 16:49:04 2015 +0000
+++ b/utils/Led_config.h	Fri Jun 26 22:53:54 2015 +0000
@@ -8,7 +8,7 @@
     NO_LED,
     led3 = 0x1, /* RED LED D7/GP9/Pin64 */
     led4 = 0x2, /* ORANGE LED D6/GP10/Pin1 */
-    led5 = 0x4  /* GREEN LED D5/GP11/Pin2 */
+    led5 = 0x3  /* GREEN LED D5/GP11/Pin2 */
 
 } ledEnum;
 
@@ -16,7 +16,7 @@
 typedef enum
 {
     NO_LED_IND = NO_LED,
-    MCU_SENDING_DATA_IND = led3,
+    MCU_SENDING_DATA_IND = 4,
     MCU_ASSOCIATED_IND, /* Device associated to an AP */
     MCU_IP_ALLOC_IND, /* Device acquired an IP */
     MCU_SERVER_INIT_IND, /* Device connected to remote server */
@@ -24,10 +24,10 @@
     MCU_ON_IND,              /* Device SLHost invoked successfully */
     MCU_EXECUTE_SUCCESS_IND, /* Task executed sucessfully */
     MCU_EXECUTE_FAIL_IND, /* Task execution failed */
-    MCU_RED_LED_GPIO,   /* GP09 for LED RED as per LP 3.0 */
-    MCU_ORANGE_LED_GPIO,/* GP10 for LED ORANGE as per LP 3.0 */
-    MCU_GREEN_LED_GPIO, /* GP11 for LED GREEN as per LP 3.0 */
-    MCU_ALL_LED_IND
+    MCU_RED_LED_GPIO = led3,   /* GP09 for LED RED as per LP 3.0 */
+    MCU_ORANGE_LED_GPIO = led4,/* GP10 for LED ORANGE as per LP 3.0 */
+    MCU_GREEN_LED_GPIO = led5, /* GP11 for LED GREEN as per LP 3.0 */
+    MCU_ALL_LED_IND = 12
 } ledNames;
 
 //*****************************************************************************