From what I can see, these two signals are no longer in use. Please ensure that you notify the user of rejection from FW. And move forward only when FW accepts the request.
this will work but can be updated to be more flexible and take into account if HeparinSringePump is set to enabled or disabled.. I suggest checking the system.conf first specfically the HeparinSyringePump and if it is set to 1 then the 3 heparin parameters are visible.
IF HeparinSyringePump is set to 0 then heparin is defeatured and those 3 heparin parameters are not visible and will fail to find and set those values.
This alarm does not belong here. Put it back where it was before. In the next table below, the alarms are sorted by rank. But this property table is sorted by alarm ID #.
signal function will take us out of blood prime, so no reason to change state here. We would not want to go to run state even if we weren't leaving - run state is for when user changes blood flow rate which they have not done here.
In this state, we still need to signal transition to dialysis when target volume is reached (same as in ramp state). We also need to look for user request to pause (same as in ramp state).
i cant update the property name to default because its a reserved keyword in qml. I also cant change actualValue to value because we already have a value property that serves as the main value for this component. Actual value is intended only for the refresh to update with the "actual" value set in c++.
Unknown macro: {
STANDARD, ///< standard equation for conductivity
ALY_LINEAR, ///< Aly's high range model for conductivity
UPDATED_STANDARD, ///< Updated stand equation with a linear transformation.
NUM_OF_MODELS, ///< Number of models used for conductivity calculation.
}
COND_MODELS_T;
Its enumeration , if user send -1, -1 < NUM_OF_MODELS, this check passes
didValidationPass() is still being used and the slot in in PreTreatmentCreateContent. The didValidationFail() is no longer being used. The user notified of rejection by that failing fw components border changing colors and the confirm button is disabled until they try again. Do we want an additional message notifying the failure?
Should just be one return statement in function. Set a local variable where you have returns, remove the returns, and then just return the local variable at the end of function (like it was before).