Pacemaker code Implementation for SFWRENG 3K04

Dependencies:   mbed Queue mbed-rtos FXOS8700Q

Fork of Pacemaker by Eric dollar

SWFRENG 3K04 Project to design, develop, and document a functional pacemaker.

The project uses the Freescale K64F Microcontroller and C++ mbed library.

Files at this revision

API Documentation at this revision

Comitter:
FiveDollar
Date:
Mon Nov 14 01:28:27 2016 +0000
Parent:
1:9f1091a53ff5
Child:
4:bb9569716bb6
Commit message:
added ending comments

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Mon Nov 14 01:25:36 2016 +0000
+++ b/main.cpp	Mon Nov 14 01:28:27 2016 +0000
@@ -14,13 +14,13 @@
     chamberData* atrium = new chamberData(io->getSerial(),'a');
     chamberData* ventricle = new chamberData(io->getSerial(), 'v');
     pulse* ventPulse = new pulse(ventricle,io);
-    interface a(io->getSerial() , ventPulse , atrium , ventricle);
-    
-    
+    interface a(io->getSerial() , ventPulse , atrium , ventricle);    
     delete ventricle; //code never reaches here, since we're stuck in the while loops of the pacing, user interface, etc.
     delete atrium;
     delete ventPulse;
     delete io;
     
 return 0;
-    }
\ No newline at end of file
+    }
+    
+//added ending comments
\ No newline at end of file