Index: leahi_dialin/common/dd_defs.py =================================================================== diff -u -r34d5565286b43d593aea1a854f7cb2fb917de777 -r15dc2a98494cf4b459c1fcaeb4a70be3e8a9484a --- leahi_dialin/common/dd_defs.py (.../dd_defs.py) (revision 34d5565286b43d593aea1a854f7cb2fb917de777) +++ leahi_dialin/common/dd_defs.py (.../dd_defs.py) (revision 15dc2a98494cf4b459c1fcaeb4a70be3e8a9484a) @@ -1029,13 +1029,17 @@ @unique class DDConductivityResistanceAttributes(DialinEnum): - RAW_RESISTANCE = 0 # Raw Conductivity resistance Attribute - RTD_RESISTANCE = 1 # raw RTD resistance Attribute - NUM_OF_RESISTANCE_ATTRIBUTES = 2 # Number of conductivity sensor Attributes + CONDUCTIVITY = 0 # Conductivity + CONDUCTIVITY_RESISTANCE = 1 # raw conductivity resistance Attribute + RTD_RESISTANCE = 2 # raw RTD resistance Attribute + UNCOMPENSATED_COND = 3 # Uncompensated Conductivity + NUM_OF_RESISTANCE_ATTRIBUTES = 4 # Number of conductivity sensor Attributes DDConductivityResistanceAttributes._str_list = { # Official Name : Accepted strings - 'RAW_RESISTANCE': ['cond resistance,'], - 'RTD_RESISTANCE': ['rtd resistance'], + 'CONDUCTIVITY': ['conductivity,'], + 'CONDUCTIVITY_RESISTANCE': ['conductivity resistance'], + 'RTD_RESISTANCE' : ['rtd resistance'], + 'UNCOMPENSATED_COND' : ['uncompensated conductivity'], 'NUM_OF_RESISTANCE_ATTRIBUTES': [], } \ No newline at end of file