From e0b323b13c86667f8f4909672449bfab25b3a7ad Mon Sep 17 00:00:00 2001 From: Thomas Forbriger Date: Mon, 5 Aug 2019 13:14:54 +0200 Subject: [PATCH] libdatrwxx [FIX]: add LHe-Alt to T-Soft translation table With the new UIPC software installation on 2019-07-30 the name of channel 31 was changed from LHeLvl to LHe-Alt, which gives a proper distinction to LHe-Lvl. With the new library version LHeLvl and LHe-Alt both are translated to LHX. --- src/libs/libdatrwxx/tsoft/channeltranslation.cc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/libs/libdatrwxx/tsoft/channeltranslation.cc b/src/libs/libdatrwxx/tsoft/channeltranslation.cc index a18eeb63..919ef6d7 100644 --- a/src/libs/libdatrwxx/tsoft/channeltranslation.cc +++ b/src/libs/libdatrwxx/tsoft/channeltranslation.cc @@ -35,11 +35,12 @@ * extract full channel description on request * - 01/04/2018 V1.4 add additional channels to translation table * - 06/04/2018 V1.5 catch typo in SG056 channel configuration + * - 05/08/2019 V1.6 translate LHeLvl and LHe-Alt to LHX both * * ============================================================================ */ #define DATRW_CHANNELTRANSLATION_CC_VERSION \ - "DATRW_CHANNELTRANSLATION_CC V1.5" + "DATRW_CHANNELTRANSLATION_CC V1.6" #include #include @@ -67,6 +68,11 @@ namespace datrw { * 06.04.2018 * catch typo in SG056 channel configuration * B2r-F60 and Br2-F60 are the same data + * + * 05.08.2019 + * with new UIPC software version (installed on 2019-07-30) + * LHeLvl was renamed to LHe-Alt + * convert both into LHX */ const Channel translationtable[]={ {"BF:SG056:Grav-1", "BFO:GR1:SG056:Gra1", CNSP}, @@ -127,6 +133,8 @@ namespace datrw { // --------------------------------------------- {"BF:SG056:AGnd", "BFO:GND:SG056:AGnd", CNSP}, {"BF:SG056:LHeLvl", "BFO:LHX:SG056:LHeX", GEPLHe23}, + // with new UIPC software version LHeLvl was called LHe-Alt + {"BF:SG056:LHe-Alt", "BFO:LHX:SG056:LHeX", GEPLHe23}, {"BF:SG056:LHe-Lvl", "BFO:LH1:SG056:LHeL", GEPLHe23}, {"BF:SG056:Comp_DC", "BFO:CDC:SG056:CoDC", CNSP}, {"BF:SG056:CH_DC", "BFO:CHD:SG056:CHDC", CNSP}, -- GitLab