Index: firmware/App/Modes/ModeTreatment.c =================================================================== diff -u -rda59fa4a98dbc11c37677e92a66aa940d251678f -r3e6b89e98c3725c7afd94a3c37fe3efce3fde65f --- firmware/App/Modes/ModeTreatment.c (.../ModeTreatment.c) (revision da59fa4a98dbc11c37677e92a66aa940d251678f) +++ firmware/App/Modes/ModeTreatment.c (.../ModeTreatment.c) (revision 3e6b89e98c3725c7afd94a3c37fe3efce3fde65f) @@ -17,6 +17,7 @@ #include "AirTrap.h" //#include "BloodFlow.h" +#include "BPModule.h" #include "Bubbles.h" #include "Buttons.h" #include "DDInterface.h" @@ -186,6 +187,7 @@ { // Initialize treatment mode each time we transition to it initTreatmentMode(); + initBPModule(); // Initialize treatment sub-modes each time we transition to treatment mode initBloodPrime(); initDialysis(); @@ -512,6 +514,8 @@ // Manage air trap control execAirTrapMonitorTreatment(); + // Execute Blood pressure module + execBPModule(); return currentTreatmentState; }