Pacemaker code Implementation for SFWRENG 3K04
Dependencies: mbed Queue mbed-rtos FXOS8700Q
Fork of Pacemaker by
SWFRENG 3K04 Project to design, develop, and document a functional pacemaker.
The project uses the Freescale K64F Microcontroller and C++ mbed library.
Diff: main.cpp
- Revision:
- 3:84d3ef9acd17
- Parent:
- 1:9f1091a53ff5
- Child:
- 9:b48423a135d8
--- 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