ARM mbed M2X API Client: The ARM mbed client library is used to send/receive data to/from AT&T's M2X service from mbed LPC1768 microcontrollers.

Dependents:   m2x-demo-all M2X_MTS_ACCEL_DEMO M2X_MTS_Accel M2X_K64F_ACCEL ... more

Committer:
jb8414
Date:
Wed Feb 12 19:43:34 2014 +0000
Revision:
0:f479e4f4db0e
initial commit from github revision b98a6d0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jb8414 0:f479e4f4db0e 1 #ifndef UTILITY_H_
jb8414 0:f479e4f4db0e 2 #define UTILITY_H_
jb8414 0:f479e4f4db0e 3
jb8414 0:f479e4f4db0e 4 #include "mbed.h"
jb8414 0:f479e4f4db0e 5 #include <string.h>
jb8414 0:f479e4f4db0e 6
jb8414 0:f479e4f4db0e 7 #ifdef __cplusplus
jb8414 0:f479e4f4db0e 8 extern "C" {
jb8414 0:f479e4f4db0e 9 #endif
jb8414 0:f479e4f4db0e 10
jb8414 0:f479e4f4db0e 11 void delay(int ms);
jb8414 0:f479e4f4db0e 12 char* strdup(const char* s);
jb8414 0:f479e4f4db0e 13
jb8414 0:f479e4f4db0e 14 #ifdef __cplusplus
jb8414 0:f479e4f4db0e 15 }
jb8414 0:f479e4f4db0e 16 #endif
jb8414 0:f479e4f4db0e 17
jb8414 0:f479e4f4db0e 18 #endif