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.

Revision:
10:35b259e70c9a
Parent:
9:b48423a135d8
Child:
18:aef2f75f216b
Child:
19:d58e1e1a9a24
--- a/main.cpp	Tue Nov 15 20:30:12 2016 +0000
+++ b/main.cpp	Tue Nov 15 21:27:46 2016 +0000
@@ -14,8 +14,12 @@
     chamberData* atrium = new chamberData(io->getSerial(),'a');
     chamberData* ventricle = new chamberData(io->getSerial(), 'v');
     pulse* ventPulse = new pulse(ventricle,io);
+    pulse* atrPulse = new pulse(atrium,io);
     interface a(io->getSerial() , ventPulse , generalData, atrium , ventricle); 
+    //if 
     a.startScreen();   
+    
+    
     delete ventricle; //code never reaches here, since we're stuck in the while loops of the pacing, user interface, etc.
     delete atrium;
     delete ventPulse;