Eric Tran
/
3K04EricTheadfork
eric's fork test
Fork of Pacemaker by
voor.cpp
- Committer:
- trane3
- Date:
- 2016-11-16
- Revision:
- 16:aef2f75f216b
- Parent:
- 10:35b259e70c9a
File content as of revision 16:aef2f75f216b:
#pragma once #include "mbed.h" #include "voor.h" #include "pulse.h" #include "rtos.h" voor::voor(){} voor::voor(pulse* p){ voorPulse = p; // Thread thread(voor_pace); } voor::~voor(){}; void voor::startPace(){ while (true){ voorPulse->startPulse(); //startPulse(); } } void voor::setPacingMode(int i){ y_pacingMode = i; } void voor::voor_pace(void const *args){ startPace(); }