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
dflet 3:a8c249046181 2 #ifndef FREERTOS_STDINT
dflet 3:a8c249046181 3 #define FREERTOS_STDINT
dflet 3:a8c249046181 4
dflet 3:a8c249046181 5 /*******************************************************************************
dflet 3:a8c249046181 6 * THIS IS NOT A FULL stdint.h IMPLEMENTATION - It only contains the definitions
dflet 3:a8c249046181 7 * necessary to build the FreeRTOS code. It is provided to allow FreeRTOS to be
dflet 3:a8c249046181 8 * built using compilers that do not provide their own stdint.h definition.
dflet 3:a8c249046181 9 *
dflet 3:a8c249046181 10 * To use this file:
dflet 3:a8c249046181 11 *
dflet 3:a8c249046181 12 * 1) Copy this file into the directory that contains your FreeRTOSConfig.h
dflet 3:a8c249046181 13 * header file, as that directory will already be in the compilers include
dflet 3:a8c249046181 14 * path.
dflet 3:a8c249046181 15 *
dflet 3:a8c249046181 16 * 2) Rename the copied file stdint.h.
dflet 3:a8c249046181 17 *
dflet 3:a8c249046181 18 */
dflet 3:a8c249046181 19
dflet 3:a8c249046181 20 typedef signed char int8_t;
dflet 3:a8c249046181 21 typedef unsigned char uint8_t;
dflet 3:a8c249046181 22 typedef short int16_t;
dflet 3:a8c249046181 23 typedef unsigned short uint16_t;
dflet 3:a8c249046181 24 typedef long int32_t;
dflet 3:a8c249046181 25 typedef unsigned long uint32_t;
dflet 3:a8c249046181 26
dflet 3:a8c249046181 27 #endif /* FREERTOS_STDINT */
dflet 3:a8c249046181 28