Index: leahi_dialin/common/msg_ids.py =================================================================== diff -u -r849e6b1d5227a2edd9a0070cbe4dcc5a5075002c -r23a126290aecdb5d43c8f5263bd147e91f53f507 --- leahi_dialin/common/msg_ids.py (.../msg_ids.py) (revision 849e6b1d5227a2edd9a0070cbe4dcc5a5075002c) +++ leahi_dialin/common/msg_ids.py (.../msg_ids.py) (revision 23a126290aecdb5d43c8f5263bd147e91f53f507) @@ -133,14 +133,14 @@ MSG_ID_TD_DURATION_VALIDATE_RESPONSE = 0x84 MSG_ID_UI_DURATION_CONFIRM_REQUEST = 0x85 MSG_ID_TD_DURATION_CONFIRM_RESPONSE = 0x86 - MSG_ID_UI_TREATMENT_SET_POINTS_CHANGE_REQUEST = 0x87 - MSG_ID_TD_TREATMENT_SET_POINTS_CHANGE_RESPONSE = 0x88 - MSG_ID_UI_TREATMENT_SET_POINT_BLOOD_FLOW_CHANGE_REQUEST = 0x89 - MSG_ID_TD_TREATMENT_SET_POINT_BLOOD_FLOW_CHANGE_RESPONSE = 0x8A - MSG_ID_UI_TREATMENT_SET_POINT_DIALYSATE_FLOW_CHANGE_REQUEST = 0x8B - MSG_ID_TD_TREATMENT_SET_POINT_DIALYSATE_FLOW_CHANGE_RESPONSE = 0x8C - MSG_ID_UI_TREATMENT_SET_POINT_DIALYSATE_TEMPERATURE_CHANGE_REQUEST = 0x8D - MSG_ID_TD_TREATMENT_SET_POINT_DIALYSATE_TEMPERATURE_CHANGE_RESPONSE = 0x8E + MSG_ID_UI_TREATMENT_SET_POINTS_CHANGE_REQUEST = 0x93 + MSG_ID_TD_TREATMENT_SET_POINTS_CHANGE_RESPONSE = 0x94 + MSG_ID_UI_TREATMENT_SET_POINT_BLOOD_FLOW_CHANGE_REQUEST = 0x95 + MSG_ID_TD_TREATMENT_SET_POINT_BLOOD_FLOW_CHANGE_RESPONSE = 0x96 + MSG_ID_UI_TREATMENT_SET_POINT_DIALYSATE_FLOW_CHANGE_REQUEST = 0x97 + MSG_ID_TD_TREATMENT_SET_POINT_DIALYSATE_FLOW_CHANGE_RESPONSE = 0x98 + MSG_ID_UI_TREATMENT_SET_POINT_DIALYSATE_TEMPERATURE_CHANGE_REQUEST = 0x99 + MSG_ID_TD_TREATMENT_SET_POINT_DIALYSATE_TEMPERATURE_CHANGE_RESPONSE = 0x9A MSG_ID_DD_PISTON_PUMP_CONTROL_DATA = 0xF0 Index: leahi_dialin/ui/td_messaging.py =================================================================== diff -u -r849e6b1d5227a2edd9a0070cbe4dcc5a5075002c -r23a126290aecdb5d43c8f5263bd147e91f53f507 --- leahi_dialin/ui/td_messaging.py (.../td_messaging.py) (revision 849e6b1d5227a2edd9a0070cbe4dcc5a5075002c) +++ leahi_dialin/ui/td_messaging.py (.../td_messaging.py) (revision 23a126290aecdb5d43c8f5263bd147e91f53f507) @@ -766,7 +766,7 @@ def td_treatment_set_points_change_response(self, vRejectionReason: int, vBloodFlowRate: int, vDialysateFlowRate: int, vDialysateTemperature: float, vAcidConcentrate: int, vBicarbConcentrate: int): """ - the treatment set points change response message method(Msg ID: 0x88, 136) + the treatment set points change response message method(Msg ID: 0x94, 136) Args: @param vRejectionReason (int) : response rejection reason, if rejection reason is 0, then accepted (0) will be sent, @@ -796,7 +796,7 @@ def td_treatment_set_point_blood_flow_rate_change_response(self, vRejectionReason: int, vBloodFlowRate: int): """ - the treatment blood flow rate set point change response message method(Msg ID: 0x8A, 138) + the treatment blood flow rate set point change response message method(Msg ID: 0x96, 138) Args: @param vRejectionReason (int) : response rejection reason, if rejection reason is 0, then accepted (0) will be sent, @@ -818,7 +818,7 @@ def td_treatment_set_point_dialysate_flow_rate_change_response(self, vRejectionReason: int, vDialysateFlowRate: int): """ - the treatment dialysate flow rate set point change response message method(Msg ID: 0x8A, 138) + the treatment dialysate flow rate set point change response message method(Msg ID: 0x98, 138) Args: @param vRejectionReason (int) : response rejection reason, if rejection reason is 0, then accepted (0) will be sent, @@ -840,7 +840,7 @@ def td_treatment_set_point_dialysate_temperature_change_response(self, vRejectionReason: int, vDialysateTemperature: float): """ - the treatment dialysate temperature set point change response message method(Msg ID: 0x8A, 138) + the treatment dialysate temperature set point change response message method(Msg ID: 0x9A, 138) Args: @param vRejectionReason (int) : response rejection reason, if rejection reason is 0, then accepted (0) will be sent,