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 *
dflet 3:a8c249046181 3 * Copyright (C) 2014 Texas Instruments Incorporated
dflet 3:a8c249046181 4 *
dflet 3:a8c249046181 5 * All rights reserved. Property of Texas Instruments Incorporated.
dflet 3:a8c249046181 6 * Restricted rights to use, duplicate or disclose this code are
dflet 3:a8c249046181 7 * granted through contract.
dflet 3:a8c249046181 8 *
dflet 3:a8c249046181 9 * The program may not be used without the written permission of
dflet 3:a8c249046181 10 * Texas Instruments Incorporated or against the terms and conditions
dflet 3:a8c249046181 11 * stipulated in the agreement under which this program has been supplied,
dflet 3:a8c249046181 12 * and under no circumstances can it be used with non-TI connectivity device.
dflet 3:a8c249046181 13 *
dflet 3:a8c249046181 14 ******************************************************************************/
dflet 3:a8c249046181 15
dflet 3:a8c249046181 16 /*
dflet 3:a8c249046181 17 platform.h
dflet 3:a8c249046181 18
dflet 3:a8c249046181 19 This file contains the platform specific typedefs
dflet 3:a8c249046181 20 */
dflet 3:a8c249046181 21
dflet 3:a8c249046181 22 #ifndef __PLATFORM_H__
dflet 3:a8c249046181 23 #define __PLATFORM_H__
dflet 3:a8c249046181 24
dflet 3:a8c249046181 25 #include "cc3100_simplelink.h"
dflet 3:a8c249046181 26
dflet 3:a8c249046181 27 #ifdef __cplusplus
dflet 3:a8c249046181 28 extern "C"
dflet 3:a8c249046181 29 {
dflet 3:a8c249046181 30 #endif
dflet 3:a8c249046181 31
dflet 3:a8c249046181 32 namespace mbed_mqtt {
dflet 3:a8c249046181 33
dflet 3:a8c249046181 34 //typedef unsigned char u8; /* Range: 0 to 255; refers network buf */
dflet 3:a8c249046181 35 //typedef signed char i8; /* Range: -127 to 127 and signed maths */
dflet 3:a8c249046181 36 //typedef char c8; /* ASCII string and value of 0 to 127 */
dflet 3:a8c249046181 37
dflet 3:a8c249046181 38 //typedef unsigned short u16;
dflet 3:a8c249046181 39 //typedef signed short i16;
dflet 3:a8c249046181 40 //typedef unsigned long u32;
dflet 3:a8c249046181 41 //typedef signed long i32;
dflet 3:a8c249046181 42
dflet 3:a8c249046181 43 extern void platform_timer_init();
dflet 3:a8c249046181 44 extern uint32_t platform_get_time_in_secs();
dflet 3:a8c249046181 45
dflet 3:a8c249046181 46 }//namespace mbed_mqtt
dflet 3:a8c249046181 47
dflet 3:a8c249046181 48 #ifdef __cplusplus
dflet 3:a8c249046181 49 }
dflet 3:a8c249046181 50 #endif
dflet 3:a8c249046181 51
dflet 3:a8c249046181 52 #endif /* __PLATFORM_H__ */
dflet 3:a8c249046181 53