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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers memorysaver.h Source File

memorysaver.h

00001 #ifndef _MEMORYSAVER_
00002 #define _MEMORYSAVER_
00003 
00004 //Uncomment the following definition when you use them
00005 //#define OV7660_CAM
00006 //#define OV7725_CAM
00007 //#define OV7670_CAM
00008 //#define OV7675_CAM
00009 //#define OV2640_CAM
00010 //#define OV3640_CAM
00011 #define OV5642_CAM
00012 //#define MT9D111_CAM
00013 //#define MT9M112_CAM
00014 //#define MT9V111_CAM   
00015 //#define OV5640_CAM
00016 //#define MT9M001_CAM   
00017 
00018 #if defined OV7660_CAM  
00019     #include "ov7660_regs.h"
00020 #endif
00021 
00022 #if defined OV7725_CAM  
00023     #include "ov7725_regs.h"
00024 #endif
00025 
00026 #if defined OV7670_CAM  
00027     #include "ov7670_regs.h"
00028 #endif
00029 
00030 #if defined OV7675_CAM
00031     #include "ov7675_regs.h"
00032 #endif
00033 
00034 #if defined OV5642_CAM  
00035     #include "ov5642_regs.h"
00036 #endif
00037 
00038 #if defined OV3640_CAM  
00039     #include "ov3640_regs.h"
00040 #endif
00041 
00042 #if defined OV2640_CAM
00043     #include "ov2640_regs.h"
00044 #endif
00045 
00046 #if defined MT9D111_CAM 
00047     #include "mt9d111_regs.h"
00048 #endif
00049 
00050 #if defined MT9M112_CAM 
00051     #include "mt9m112_regs.h"
00052 #endif
00053 
00054 #if defined MT9V111_CAM 
00055     #include "mt9v111_regs.h"
00056 #endif
00057 
00058 #if defined OV5640_CAM  
00059     #include "ov5640_regs.h"
00060 #endif
00061 
00062 #if defined MT9M001_CAM 
00063     #include "mt9m001_regs.h"
00064 #endif
00065 
00066 #endif  //_MEMORYSAVER_
00067