Implemented first Hangar-Service

Dependencies:   CalibrateMagneto QuaternionMath

Fork of SML2 by TobyRich GmbH

Revision:
46:fd5a62296b12
Parent:
30:a56c141d1d38
--- a/CherryCam.cpp	Wed May 27 11:45:00 2015 +0000
+++ b/CherryCam.cpp	Wed May 27 13:01:43 2015 +0000
@@ -4,7 +4,7 @@
 {
     powerPin = 0; // keep off initially
 }
-    
+
 void CherryCam::powerOn()
 {
     powerPin = 1;
@@ -14,20 +14,20 @@
 {
     powerPin = 0;
 }
-    
+
 void CherryCam::start()
 {
     if (recording)
         return;
-        
+
     generateFallingEdge();
 }
-    
+
 void CherryCam::stop()
 {
     if (!recording)
         return;
-        
+
     generateFallingEdge();
 }