Index: leahi_dialin/common/td_defs.py =================================================================== diff -u -r52aa7af16b98730ba59fc2577dbe8f73b5959775 -rc8f8cbb3230e40988847f33e9701714939462c93 --- leahi_dialin/common/td_defs.py (.../td_defs.py) (revision 52aa7af16b98730ba59fc2577dbe8f73b5959775) +++ leahi_dialin/common/td_defs.py (.../td_defs.py) (revision c8f8cbb3230e40988847f33e9701714939462c93) @@ -219,7 +219,7 @@ MEASURED_BLOOD_FLOW_RATE = 1 # Measured Blood Flow Rate for Blood Flow Motor MEASURED_BLOOD_PUMP_ROTOR_SPEED = 2 # Measured Bloop Pump Rotor Speed for Blood Flow Motor MEASURED_BLOOD_PUMP_SPEED = 3 # Measured Blood Pump Speed for Blood Flow Motor - MEASURED_BLOOD_PUMP_MOTOR_CURRENT = 4 # Measured Blood Pump Motor Current for Blood Flow Motor + MEASURED_BLOOD_PUMP_TORQUE = 4 # Measured Blood Pump torque SET_RPM = 5 # Set Revolutions per minute for Blood Flow Motor ROTOR_COUNT = 6 # Rotor Count for Blood Flow Motor PRES_BLOOD_FLOW_RATE = 7 # Pressure Blood Flow Rate for Blood Flow Motor @@ -252,7 +252,8 @@ class TDPressureSensorNames(DialinEnum): H2_PRES = 0 # Arterial Pressure Sensor H14_PRES = 1 # Venous Pressure Sensor - NUM_OF_PRESSURE_SENSORS = 2 # Number of Pressure Sensors + H23_PRES = 2 # Barometric Pressure Sensor + NUM_OF_PRESSURE_SENSORS = 3 # Number of Pressure Sensors @unique class TDPressureSensorAttributes(DialinEnum): @@ -263,6 +264,11 @@ NUM_OF_PRESSURE_ATTRIBUTES = 4 # Number of Pressure Sensor Attributes @unique +class TDTemperatureSensorNames(DialinEnum): + H23_TEMP = 0 # Barometric temperature Sensor + NUM_OF_TEMPERATURE_SENSORS = 1 # Number of temperature Sensors + +@unique class TDSwitchStatus(DialinEnum): CLOSED = 0 # Closed State of the TD Switch OPEN = 1 # Open State of the TD Switch @@ -307,6 +313,7 @@ VALVE_POSITION_A_INSERT_EJECT = 1 # Insert/Eject Valve Position VALVE_POSITION_B_OPEN = 2 # Open Valve Position VALVE_POSITION_C_CLOSE = 3 # Closed Valve Position + VALVE_POSITION_C_PARTIAL_CLOSE = 4 # Partial Close Valve Position @unique class TDValvesStates(DialinEnum):