GPSライブラリ用サンプルプログラム https://developer.mbed.org/users/mikawataru/code/GPS/

Dependencies:   GPS mbed

Revision:
0:f9eadce7c7f6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sat Jul 15 15:11:28 2017 +0000
@@ -0,0 +1,11 @@
+#include "mbed.h"
+#include "GPS.h"
+
+DigitalOut myled(LED1);
+GPS gps(p28,p27);
+
+int main() {
+//    gps.rateUP();//コメント外すと強くなるよ
+    gps.LogStart(USBTX,USBRX);
+    while(1);
+}