Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C027_Support mbed
Fork of c027_prototyping by
sms_lib.h
- Committer:
- aroulin
- Date:
- 2014-10-05
- Revision:
- 17:726bbc1b73ee
- Parent:
- 10:b9ca12e9bb34
File content as of revision 17:726bbc1b73ee:
#ifndef __SMS_LIB_H__
#define __SMS_LIB_H__
#include "MDM.h"
struct sms_data_t {
char *phone_num;
char *msg_buf;
};
int init_sms_features(MDMSerial *_mdm, char* SIMPIN);
int send_sms(struct sms_data_t *sms);
int read_sms(struct sms_data_t *sms);
#endif
