Prototyping the Adaptable Emergency System on an C027 board.

Dependencies:   C027_Support mbed

Fork of c027_prototyping by Philémon Favrod

Committer:
aroulin
Date:
Tue Sep 30 16:06:35 2014 +0000
Revision:
4:f1708f6ec905
Parent:
2:0eb41327c023
Child:
5:6d0cdd715100
Merge GPS Locate and SMS features

Who changed what in which revision?

UserRevisionLine numberNew contents of line
philemonf 2:0eb41327c023 1 #ifndef __SMS_LIB_H__
philemonf 2:0eb41327c023 2 #define __SMS_LIB_H__
philemonf 2:0eb41327c023 3
philemonf 2:0eb41327c023 4 struct sms_data_t {
philemonf 2:0eb41327c023 5 char *phone_num;
philemonf 2:0eb41327c023 6 char *msg_buf;
philemonf 2:0eb41327c023 7 };
philemonf 2:0eb41327c023 8
philemonf 2:0eb41327c023 9 int init_sms_features(void);
philemonf 2:0eb41327c023 10
philemonf 2:0eb41327c023 11
aroulin 4:f1708f6ec905 12 #endif