Implemented first Hangar-Service

Dependencies:   CalibrateMagneto QuaternionMath

Fork of SML2 by TobyRich GmbH

Revision:
46:fd5a62296b12
Parent:
27:e71a2e4e6e3f
--- a/GPS.h	Wed May 27 11:45:00 2015 +0000
+++ b/GPS.h	Wed May 27 13:01:43 2015 +0000
@@ -10,18 +10,18 @@
     /// Constructor
     /// @param pc The serial (UART) port used to communicate with the GPS. Data is only received, nothing is sent to this port.
     GPS(Serial const &pc);
-    
+
     class Delegate
     {
         virtual void gpsSync() = 0;
     };
-    
+
     void powerOn();
     void powerOff();
-    
+
 private:
     Serial* uart;
-    
+
 };
 
 #endif//_H_GPS_H
\ No newline at end of file