Index: leahi_dialin/common/td_defs.py =================================================================== diff -u -rbac0a2d09d57dc27cfa2f2a596d57fdcbed392ee -r0f5edef41f89475eff5505a71625dff13c27114a --- leahi_dialin/common/td_defs.py (.../td_defs.py) (revision bac0a2d09d57dc27cfa2f2a596d57fdcbed392ee) +++ leahi_dialin/common/td_defs.py (.../td_defs.py) (revision 0f5edef41f89475eff5505a71625dff13c27114a) @@ -222,7 +222,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 @@ -255,7 +255,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): @@ -266,6 +267,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 @@ -310,6 +316,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):