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.
Fork of GPS_test by
Revision 2:b4e2a17ea09f, committed 2018-07-09
- Comitter:
- Imashioyayoshiyuki
- Date:
- Mon Jul 09 07:14:39 2018 +0000
- Parent:
- 1:9d198383f15c
- Commit message:
- ??????GPS??????GYSFDMAXB??????
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 9d198383f15c -r b4e2a17ea09f main.cpp --- a/main.cpp Sat Jul 07 11:24:03 2018 +0000 +++ b/main.cpp Mon Jul 09 07:14:39 2018 +0000 @@ -11,10 +11,10 @@ /* 1秒ごとに現在地を取得してターミナル出力 */ while(1) { if(gps.getgps()) //現在地取得 - pc.printf("(%lf, %lf)\r\n", gps.latitude, gps.longitude); + pc.printf("(%lf, %lf)\r\n", gps.latitude, gps.longitude);//緯度と経度を出力 else - pc.printf("No data\r\n"); + pc.printf("No data\r\n");//データ取得に失敗した場合 wait(1); }