Update revision to use TI's mqtt and Freertos.

Dependencies:   mbed client server

Fork of cc3100_Test_mqtt_CM3 by David Fletcher

Committer:
dflet
Date:
Thu Sep 03 14:02:37 2015 +0000
Revision:
3:a8c249046181
SPI Mode change 1 to 0

Who changed what in which revision?

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