Pacemaker code Implementation for SFWRENG 3K04
Dependencies: FXOS8700Q Queue mbed-rtos mbed
Fork of Pacemaker by
Diff: pulse.cpp
- Revision:
- 0:b2b3955cd77b
- Child:
- 1:fbba2687ddfe
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pulse.cpp Sun Oct 30 16:04:52 2016 +0000 @@ -0,0 +1,41 @@ +#pragma once +#include "mbed.h" +#include "pulse.h" + +pulse::pulse(){} + +pulse::pulse(chamberData* chamber, hardware* IOpins){ + myIOpins = IOpins; + myChamber = chamber; + // myPaceWidth = 0; //mSec, width of ventricular pace +// myPaceAmp = 0; //mV, amplitude of ventricular pace +// myRP = 0; //mSec, duration of refractory period +// p_hysteresisInterval = 0; +// p_lowrateInterval = 0; +// p_hysteresis = false; + +} + +pulse::~pulse(){ + delete myChamber; + delete myIOpins; + delete pc; + delete aOut; +} + + + +void pulse::startPulse(){ + // while(true){ + pc = myIOpins->getSerial(); + aOut = myIOpins->getChamber(myChamber->getChamberType()); + aOut->write(myChamber->getPaceAmp()); + wait(myChamber->getPaceWidth()); + aOut->write(0); + + pc->printf("\nPulsing...check your oscilloscope!"); + // wait(myChamber->getPaceWidth()); + + // } +} + \ No newline at end of file