Version 1.23

//Version 1.23
//-Suite à la mise en service du du SEI Angrignon, on a dû changer le
CDV d'activation ZT2 car le CDV 13A s'occupe parfois trop tard et la
sonde magnétique cause des PEQ2.
This commit is contained in:
jfmartel 2021-05-10 17:04:48 -04:00
parent 11046b22d5
commit 7081376137
2 changed files with 13 additions and 6 deletions

View File

@ -70,8 +70,8 @@ CAngrignonStation::CAngrignonStation()
//Logic input masks
mStationInputMasks.InputCDVZT1ApproachMask = ANGRIGNON_IN_CDV_11A_MASK;
mStationInputMasks.InputCDVZT1Mask = ANGRIGNON_IN_CDV_11B_MASK;
mStationInputMasks.InputCDVZT2ApproachMask = ANGRIGNON_IN_CDV_12B_MASK;
mStationInputMasks.InputCDVZT2Mask = ANGRIGNON_IN_CDV_13A_MASK;
mStationInputMasks.InputCDVZT2ApproachMask = ANGRIGNON_IN_CDV_12B_MASK;
mStationInputMasks.InputCDVZT2Mask = ANGRIGNON_IN_CDV_13A_MASK;
//Output masks
mStationOutputMasks.OutputVP1Mask = ANGRIGNON_OUT_VP1_MASK;
@ -131,13 +131,14 @@ unsigned int CAngrignonStation::BuildStationCDVList()
NewCDV = new CCDV(ANGRIGNON_IN_ZT2_ITI_MASK,ANGRIGNON_IN_CDV_13A_MASK,CDV_NORMAL_TYPE,"13A ZT2",1,3);
mZT2CDV = NewCDV;
mZT2ApproachCDV = NewCDV;
mZT2CDV = NewCDV;
// mZT2ApproachCDV = NewCDV; //JFM 2021-05-10 Suite à la MES du SEI, le CDV 13A s'occupe plus tard et on a des pannes équipement. Déplacé le CDV d'approche sur le 12B
mCDVList.append(NewCDV);
NewCDV = new CCDV(ANGRIGNON_IN_ZT1_ITI_MASK,ANGRIGNON_IN_CDV_12B_MASK,CDV_NORMAL_TYPE,"12B",1,4);
mCDVList.append(NewCDV);
mZT2ApproachCDV = NewCDV; //JFM 2021-05-10 Suite à la MES du SEI, le CDV 13A s'occupe plus tard et on a des pannes équipement. Déplacé le CDV d'approche sur le 12B
mCDVList.append(NewCDV);
NewCDV->SetCDVDeck(true);

View File

@ -29,13 +29,19 @@
#ifndef ZTVERSION_H
#define ZTVERSION_H
#define ZT_SOFT_VERSION "V1.22"
#define ZT_SOFT_VERSION "V1.23"
//LOG DES CHANGEMENTS
//Version 1.23
//-Suite à la mise en service du du SEI Angrignon, on a dû changer le CDV d'activation ZT2
// car le CDV 13A s'occupe parfois trop tard et la sonde magnétique cause des PEQ2.
//Version 1.22
//-Ajout de la deconnexion manuelle du socket lors du timeout
// de watchdog avec NetTrac. Suite aux essais site Angrignon.
//V1.21_TEST_ATS (NON DEPLOYE)
//Changement de l'endian du bit de watchdog pour les essais ATS.