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:
14:90603ea1e85b
Parent:
12:7d75ba5deed1
Child:
21:38c6b11aa348
--- a/camera_app/camera_app.h	Mon Jul 13 08:20:40 2015 +0000
+++ b/camera_app/camera_app.h	Tue Aug 25 22:03:00 2015 +0000
@@ -96,14 +96,15 @@
 // APIs
 //******************************************************************************
 
-unsigned short StartCamera(char **WriteBuffer);
+uint32_t StartCamera(char **WriteBuffer);
 int SetCameraResolution(int width, int height);
 void InitCameraComponents(int width, int height);
 
 static void CamControllerInit(void);
 static void CameraIntHandler(void);
-uint16_t CaptureImage(char **WriteBuffer);
+uint32_t CaptureImage(char **WriteBuffer);
 void DMAConfig(void);
+void DCMI_MspInit(DCMI_HandleTypeDef* hdcmi);
 
 /****************************************************************************/
 /*                      LOCAL FUNCTION PROTOTYPES                           */