C027_SupportTest_xively_locationで使用しているC027用ライブラリ

Fork of C027_Support by u-blox

下記のプログラムC027_SupportTest_xively_locationで使用しているC027用ライブラリです。

Import programC027_SupportTest_xively_location

インターフェース2014年10月号のu-blox C027で3G通信する記事で使用したプログラム。   CQ publishing Interface 2014.10 issue, C027 3G test program.

オリジナルのライブラリは下記を参照してください。

Import libraryC027_Support

support library for C027 helper functions for Buffer Pipes, Buffered Serial Port (rtos capable) and GPS parsing. It includes modem APIs for USSD, SMS and Sockets.

Committer:
mazgch
Date:
Mon Oct 21 19:46:34 2013 +0000
Revision:
1:f41579f4e2ed
Child:
2:b6012cd91657
first draft

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mazgch 1:f41579f4e2ed 1 #pragma once
mazgch 1:f41579f4e2ed 2
mazgch 1:f41579f4e2ed 3 #include "SerialPipe.h"
mazgch 1:f41579f4e2ed 4
mazgch 1:f41579f4e2ed 5 class GPS : public SerialPipe
mazgch 1:f41579f4e2ed 6 {
mazgch 1:f41579f4e2ed 7 public:
mazgch 1:f41579f4e2ed 8 GPS() : SerialPipe(GPSTXD, GPSRXD, 256, "gps")
mazgch 1:f41579f4e2ed 9 {
mazgch 1:f41579f4e2ed 10 baud(GPSBAUD);
mazgch 1:f41579f4e2ed 11 }
mazgch 1:f41579f4e2ed 12 };