huohuoh

Dependencies:   NetServices mbed C027_Supports mbed-rpcx

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Modem.h Source File

Modem.h

00001 #ifndef MODEMINIT_H
00002 #define MODEMINIT_H
00003 
00004 #include "MDM.h"
00005 #include <vector>
00006 
00007 #define TASK false
00008 #define SKADA true
00009 
00010 #define SIMPIN      NULL
00011 #define APN         NULL
00012 #define USERNAME    NULL
00013 #define PASSWORD    NULL
00014 
00015 void SetModem(MDMSerial &mdm);
00016 bool PostData(MDMSerial &mdm, const int &identifier_, const std::vector<int> &input, bool mode=SKADA);
00017 bool chekConect(MDMSerial &mdm);
00018 
00019 #endif