Index: sources/model/hd/data/MTreatmentFlowsData.cpp =================================================================== diff -u -r56e378f7504701b9e9a9dccaf205aef2fd52c58e -r51936e788b311fec39d28c387e5026f50e06c165 --- sources/model/hd/data/MTreatmentFlowsData.cpp (.../MTreatmentFlowsData.cpp) (revision 56e378f7504701b9e9a9dccaf205aef2fd52c58e) +++ sources/model/hd/data/MTreatmentFlowsData.cpp (.../MTreatmentFlowsData.cpp) (revision 51936e788b311fec39d28c387e5026f50e06c165) @@ -26,7 +26,8 @@ _data.mMotorSpeed .value, _data.mMotorCtlSpeed .value, _data.mMotorCtlCurrent.value, - _data.mPWMDutyCycle .value + _data.mPWMDutyCycle .value, + _data.mSigStrength .value }; } @@ -39,6 +40,7 @@ if (GetValue(vByteArray, index, _data.mMotorCtlSpeed )) if (GetValue(vByteArray, index, _data.mMotorCtlCurrent )) if (GetValue(vByteArray, index, _data.mPWMDutyCycle )) + if (GetValue(vByteArray, index, _data.mSigStrength )) return true ; else { if(vIndex) *vIndex = index; return false; } else { if(vIndex) *vIndex = index; return false; } @@ -47,6 +49,7 @@ else { if(vIndex) *vIndex = index; return false; } else { if(vIndex) *vIndex = index; return false; } else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } } // ----- BloodFlow ----- @@ -59,6 +62,7 @@ data.mMotorCtlSpeed = _data.mMotorCtlSpeed .value; data.mMotorCtlCurrent = _data.mMotorCtlCurrent.value; data.mPWMDutyCycle = _data.mPWMDutyCycle .value; + data.mSigStrength = _data.mSigStrength .value; return data; } @@ -72,5 +76,6 @@ data.mMotorCtlSpeed = _data.mMotorCtlSpeed .value; data.mMotorCtlCurrent = _data.mMotorCtlCurrent.value; data.mPWMDutyCycle = _data.mPWMDutyCycle .value; + data.mSigStrength = _data.mSigStrength .value; return data; }