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.

Revision:
20:bfd23a6845bb
Parent:
2:fbba2687ddfe
--- a/genData.h	Thu Nov 24 01:10:08 2016 +0000
+++ b/genData.h	Thu Nov 24 03:26:14 2016 +0000
@@ -18,17 +18,17 @@
     ~genData();
     void chngHyst(bool);
     bool getHyst();
-    void chngHystInterval(double);
-    double getHystInterval();
-    void chngLRL(double);
+    int chngHystRL(double);
+    double getHystRL();
+    int chngLRL(double);
     double getLRL();
-    void chngURL(double);
+    int chngURL(double);
     double getURL();
-    void chngAVdelay(double);
+    int chngAVdelay(double);
     double getAVdelay();
-    void chngAVdelayOffset(double);
+    int chngAVdelayOffset(double);
     double getAVdelayOffset();
-    void chngRSmooth(double);
+    int chngRSmooth(double);
     double getRSmooth();
     virtual void chngMode(Mode mode);
     virtual Mode getMode();
@@ -39,7 +39,7 @@
 
 protected:
     double p_hysteresis;
-    double p_hysteresisInterval;
+    double p_hysteresisRateLimit;
     double p_lowerRateLimit;
     double p_upperRateLimit;
     double p_AVdelay;