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.
handle/handleGPS.cpp
- Committer:
- dylanembed123
- Date:
- 2014-04-03
- Revision:
- 6:f0248eb6714d
- Parent:
- 4:c75d5e5e6bfc
File content as of revision 6:f0248eb6714d:
#include "handleGPS.h" void GPSHandle::setup(){ } void GPSHandle::update(){ while(true){ if(gps.getSerial().readable()>0){ char c = gps.getSerial().getc(); USB::getSerial().printf("%c",c); } } } bool GPSHandle::check(){ return true; } void GPSHandle::run(){ }