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

Committer:
dflet
Date:
Sun Sep 06 15:19:36 2015 +0000
Revision:
0:400d8e75a8d0
TI's websocket Camera demo, also uses Arducam mini 0v5642 camera.

Who changed what in which revision?

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