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.

Committer:
trane3
Date:
Tue Nov 15 00:52:39 2016 +0000
Revision:
8:75c1dd8b0d61
Parent:
7:4eb590c7e064
Child:
18:aef2f75f216b
Child:
19:d58e1e1a9a24
added voor functionality including preliminary pacing

Who changed what in which revision?

UserRevisionLine numberNew contents of line
trane3 7:4eb590c7e064 1 #pragma once
trane3 7:4eb590c7e064 2 #include "mbed.h"
trane3 8:75c1dd8b0d61 3 #include "pulse.h"
trane3 7:4eb590c7e064 4
trane3 7:4eb590c7e064 5 class voor {
trane3 7:4eb590c7e064 6 public:
trane3 7:4eb590c7e064 7 voor();
trane3 7:4eb590c7e064 8 ~voor();
trane3 8:75c1dd8b0d61 9 voor(pulse*);
trane3 7:4eb590c7e064 10 void startPace();
trane3 8:75c1dd8b0d61 11 void setPacingMode(int);
trane3 8:75c1dd8b0d61 12 private:
trane3 8:75c1dd8b0d61 13 int y_pacingMode;
trane3 8:75c1dd8b0d61 14 pulse* voorPulse;
trane3 8:75c1dd8b0d61 15
trane3 7:4eb590c7e064 16 };