Eric Tran
/
PacemakerVOORforkTest
eric's fork test
Fork of Pacemaker by
hardware.cpp
- Committer:
- trane3
- Date:
- 2016-11-14
- Revision:
- 5:253c33930e91
- Parent:
- 2:fbba2687ddfe
- Child:
- 8:75c1dd8b0d61
File content as of revision 5:253c33930e91:
#pragma once #include "hardware.h" #include "mbed.h" PwmOut atrium(PTC12); PwmOut ventricle(PTC12); Serial pc(USBTX,USBRX); hardware::hardware(): atrium(PTC12) , ventricle(PTC12) , pc(USBTX,USBRX){ pc.baud(9600); } hardware::~hardware(){}; Serial* hardware::getSerial(){ Serial* p = &pc; return p; } PwmOut* hardware::getChamber(char chamber){ if(chamber == 'a'){ PwmOut* a = &atrium; return a; } else { PwmOut* v = &ventricle; return v; } }