source: rtos_arduino/trunk/arduino_lib/libraries/GSM/src/GSM.h@ 136

Last change on this file since 136 was 136, checked in by ertl-honda, 8 years ago

ライブラリとOS及びベーシックなサンプルの追加.

File size: 2.6 KB
Line 
1/*
2This file is part of the GSM3 communications library for Arduino
3-- Multi-transport communications platform
4-- Fully asynchronous
5-- Includes code for the Arduino-Telefonica GSM/GPRS Shield V1
6-- Voice calls
7-- SMS
8-- TCP/IP connections
9-- HTTP basic clients
10
11This library has been developed by Telefónica Digital - PDI -
12- Physical Internet Lab, as part as its collaboration with
13Arduino and the Open Hardware Community.
14
15September-December 2012
16
17This library is free software; you can redistribute it and/or
18modify it under the terms of the GNU Lesser General Public
19License as published by the Free Software Foundation; either
20version 2.1 of the License, or (at your option) any later version.
21
22This library is distributed in the hope that it will be useful,
23but WITHOUT ANY WARRANTY; without even the implied warranty of
24MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25Lesser General Public License for more details.
26
27You should have received a copy of the GNU Lesser General Public
28License along with this library; if not, write to the Free Software
29Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30
31The latest version of this library can always be found at
32https://github.com/BlueVia/Official-Arduino
33
34
35Added support for Arduino GSM Shield 2
36Modified Apr. 2015
37by Arduino.org team (http://arduino.org)
38
39*/
40#ifndef _GSM3SIMPLIFIERFILE_
41#define _GSM3SIMPLIFIERFILE_
42
43// This file simplifies the use of the GSM3 library
44// First we include everything.
45
46#include <GSM3CircularBuffer.h>
47#include <GSM3MobileCellManagement.h>
48#include <GSM3MobileClientService.h>
49#include <GSM3MobileNetworkRegistry.h>
50#include <GSM3MobileServerService.h>
51#include <GSM3ShieldV1AccessProvider.h>
52#include <GSM3ShieldV1BandManagement.h>
53#include <GSM3ShieldV1ClientProvider.h>
54#include <GSM3ShieldV1DataNetworkProvider.h>
55#include <GSM3ShieldV1ModemVerification.h>
56#include <GSM3ShieldV1CellManagement.h>
57#include <GSM3ShieldV1PinManagement.h>
58#include <GSM3ShieldV1ScanNetworks.h>
59#include <GSM3SMSService.h>
60#include <GSM3VoiceCallService.h>
61
62#include <GSM3ShieldV2.h>
63
64#define GSM GSM3ShieldV1AccessProvider
65#define GPRS GSM3ShieldV1DataNetworkProvider
66#define GSMClient GSM3MobileClientService
67#define GSMServer GSM3MobileServerService
68#define GSMVoiceCall GSM3VoiceCallService
69#define GSM_SMS GSM3SMSService
70
71#define GSMPIN GSM3ShieldV1PinManagement
72#define GSMModem GSM3ShieldV1ModemVerification
73#define GSMCell GSM3ShieldV1CellManagement
74#define GSMCell GSM3CellManagement
75#define GSMBand GSM3ShieldV1BandManagement
76#define GSMScanner GSM3ShieldV1ScanNetworks
77
78
79//#define GPRSPosition GSM3ShieldV2
80#define GSM2 GSM3ShieldV2
81#endif
Note: See TracBrowser for help on using the repository browser.