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.
voor.h@36:b6431cd8ecd6, 2016-12-18 (annotated)
- Committer:
- noahzwiep
- Date:
- Sun Dec 18 02:29:59 2016 +0000
- Revision:
- 36:b6431cd8ecd6
- Parent:
- 21:fc6c33206152
All ogre.
Who changed what in which revision?
User | Revision | Line number | New 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 | 19:d58e1e1a9a24 | 10 | voor(pulse*, chamberData*); |
trane3 | 7:4eb590c7e064 | 11 | void startPace(); |
trane3 | 8:75c1dd8b0d61 | 12 | private: |
trane3 | 8:75c1dd8b0d61 | 13 | pulse* voorPulse; |
trane3 | 19:d58e1e1a9a24 | 14 | chamberData* voorChamber; |
trane3 | 8:75c1dd8b0d61 | 15 | |
trane3 | 7:4eb590c7e064 | 16 | }; |