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

Committer:
dflet
Date:
Tue Sep 15 16:45:04 2015 +0000
Revision:
22:f9b5e0b80bf2
Parent:
0:50cedd586816
Removed some debug.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dflet 0:50cedd586816 1 /* mbed Microcontroller Library
dflet 0:50cedd586816 2 * Copyright (c) 2006-2013 ARM Limited
dflet 0:50cedd586816 3 *
dflet 0:50cedd586816 4 * Licensed under the Apache License, Version 2.0 (the "License");
dflet 0:50cedd586816 5 * you may not use this file except in compliance with the License.
dflet 0:50cedd586816 6 * You may obtain a copy of the License at
dflet 0:50cedd586816 7 *
dflet 0:50cedd586816 8 * http://www.apache.org/licenses/LICENSE-2.0
dflet 0:50cedd586816 9 *
dflet 0:50cedd586816 10 * Unless required by applicable law or agreed to in writing, software
dflet 0:50cedd586816 11 * distributed under the License is distributed on an "AS IS" BASIS,
dflet 0:50cedd586816 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
dflet 0:50cedd586816 13 * See the License for the specific language governing permissions and
dflet 0:50cedd586816 14 * limitations under the License.
dflet 0:50cedd586816 15 */
dflet 0:50cedd586816 16 #ifndef myBoardInit_H
dflet 0:50cedd586816 17 #define myBoardInit_H
dflet 0:50cedd586816 18
dflet 0:50cedd586816 19
dflet 0:50cedd586816 20 #define MBED_BOARD_LPC1768 10
dflet 0:50cedd586816 21 #define ST_MBED_NUCLEOF411 20
dflet 0:50cedd586816 22 #define EA_MBED_LPC4088 30
dflet 0:50cedd586816 23 #define ST_MBED_NUCLEOF103 40
dflet 0:50cedd586816 24 #define ST_MBED_NUCLEOF401 50
dflet 0:50cedd586816 25 #define Seeed_Arch_Max 60
dflet 0:50cedd586816 26 #define LPCXpresso4337 70
dflet 0:50cedd586816 27 #define UNDEFINED 80//add new board here
dflet 0:50cedd586816 28
dflet 0:50cedd586816 29 //#define THIS_BOARD MBED_BOARD_LPC1768
dflet 0:50cedd586816 30 //#define THIS_BOARD ST_MBED_NUCLEOF411
dflet 0:50cedd586816 31 //#define THIS_BOARD EA_MBED_LPC4088
dflet 0:50cedd586816 32 //#define THIS_BOARD ST_MBED_NUCLEOF103
dflet 0:50cedd586816 33 //#define THIS_BOARD ST_MBED_NUCLEOF401
dflet 0:50cedd586816 34 #define THIS_BOARD Seeed_Arch_Max
dflet 0:50cedd586816 35 //#define THIS_BOARD LPCXpresso4337
dflet 0:50cedd586816 36
dflet 0:50cedd586816 37
dflet 0:50cedd586816 38
dflet 0:50cedd586816 39 #endif
dflet 0:50cedd586816 40
dflet 0:50cedd586816 41