dialin

Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
Merge branch 'UI_S63' into staging

Merge branch 'DEN-9906-hd_dev-flow-measurement-changes' into staging

Please update the BloodFlow and DialysateFlow in the hd_simulator as well.

Please update the BloodFlow and DialysateFlow in the hd_simulator as well.

DEN-11250 Fixed merge conflicts

Just to keep the main reference link: https://docs.python.org/3/library/struct.html#format-characters
Totally agree, I just wanted to make sure we've planned to do that. RESOLVED.

Totally agree,
I just wanted to make sure we've planned to do that.
RESOLVED.

that'll be done in another sprint as ALL methods need to convert to that.

that'll be done in another sprint as ALL methods need to convert to that.

Merge branch 'develop' of ssh://dvm-linux02:7999/vv/dialin into develop

Merge branch 'DEN-11750-dg_dev-dg-dialysate-temperature-control-tune-up' into develop

DEN-11750 updated the header documentation of the DG temperature sensors

I think soon we need to replace these error-prone indexing data extraction with the new conversion functions in the utility module. As an example take a look at ui/hd_simulator.py@1926: @publis...

I think soon we need to replace these error-prone indexing data extraction with the new conversion functions in the utility module.
As an example take a look at ui/hd_simulator.py@1926:

    @publish(["ui_version"])
    def _handler_ui_version(self, message) -> None:
        """
        Handles the ui version response
        @param message: The ui version response message
        @return: None
        """
        payload = message['message']
        index = DenaliMessage.PAYLOAD_START_INDEX
        major, index = bytearray_to_byte(payload, index, False)
        minor, index = bytearray_to_byte(payload, index, False)
        micro, index = bytearray_to_byte(payload, index, False)
        build, index = bytearray_to_short(payload, index, False)
        compt, index = bytearray_to_integer(payload, index, False)

        self.ui_version = f"v{major}.{minor}.{micro}.{build}.{compt}"
        self.logger.debug(f"UI VERSION: {self.ui_version}")

        if self.console_out:
            print("Version:", self.ui_version)
DEN-11250 Fixed merge conflicts in msg_ids.py

Merge branch 'DEN-11750-dg_dev-dg-dialysate-temperature-control-tune-up' into develop

DEN-11750 updated the software configurations enums

DEN-11750 updated the scripts

RESOLVED.

RESOLVED.

RESOLVED.

RESOLVED.

RESOLVED.

RESOLVED.

RESOLVED.

RESOLVED.

RESOLVED.

RESOLVED.

DEN-11250 Added a command to override the heprin bolus target rate

    • -6
    • +2
    /tests/test_heprin_bolus_target_rate.py
Removed the line "from dialin.dg.dialysate_generator import DG"

Removed the line "from dialin.dg.dialysate_generator import DG"

Changed cmd_log_in_to_dg() to cmd_log_in_to_hd()

Changed cmd_log_in_to_dg() to cmd_log_in_to_hd()

Changed df_object to hd_object

Changed df_object to hd_object

Added the heparin bolus target rate to be set in mL/hour

Added the heparin bolus target rate to be set in mL/hour

Added the heprin bolus target rate value override command

Added the heprin bolus target rate value override command

RESOLVED.

RESOLVED.

RESOLVED.

RESOLVED.

RESOLVED.

RESOLVED.