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 Each real time kernel port consists of three files that contain the core kernel
dflet 0:50cedd586816 2 components and are common to every port, and one or more files that are
dflet 0:50cedd586816 3 specific to a particular microcontroller and or compiler.
dflet 0:50cedd586816 4
dflet 0:50cedd586816 5 + The FreeRTOS/Source directory contains the three files that are common to
dflet 0:50cedd586816 6 every port - list.c, queue.c and tasks.c. The kernel is contained within these
dflet 0:50cedd586816 7 three files. croutine.c implements the optional co-routine functionality - which
dflet 0:50cedd586816 8 is normally only used on very memory limited systems.
dflet 0:50cedd586816 9
dflet 0:50cedd586816 10 + The FreeRTOS/Source/Portable directory contains the files that are specific to
dflet 0:50cedd586816 11 a particular microcontroller and or compiler.
dflet 0:50cedd586816 12
dflet 0:50cedd586816 13 + The FreeRTOS/Source/include directory contains the real time kernel header
dflet 0:50cedd586816 14 files.
dflet 0:50cedd586816 15
dflet 0:50cedd586816 16 See the readme file in the FreeRTOS/Source/Portable directory for more
dflet 0:50cedd586816 17 information.