Number of Coupled channel for DT5730 is number of channel /2

This commit is contained in:
Ryan Tang 2024-03-01 19:19:33 -05:00
parent eb799802ab
commit 1b07b043aa

View File

@ -123,7 +123,7 @@ int Digitizer::OpenDigitizer(int boardID, int portID, bool program, bool verbose
regChannelMask = pow(2, NumInputCh)-1;
switch(BoardInfo.Model){
case CAEN_DGTZ_V1730: tick2ns = 2.0; NCoupledCh = NumInputCh/2; break; ///ns -> 500 MSamples/s
case CAEN_DGTZ_DT5730: tick2ns = 2.0; NCoupledCh = NumInputCh; break; ///ns -> 500 MSamples/s
case CAEN_DGTZ_DT5730: tick2ns = 2.0; NCoupledCh = NumInputCh/2; break; ///ns -> 500 MSamples/s
case CAEN_DGTZ_V1725: tick2ns = 4.0; NCoupledCh = NumInputCh/2; break; ///ns -> 250 MSamples/s
case CAEN_DGTZ_V1740: {
NumInputCh = 64;