Browse Source

Revert Bank Switching

Timo Dritschler 3 years ago
parent
commit
9e2f1b7fa3
1 changed files with 1 additions and 6 deletions
  1. 1 6
      KCG/base/backend/DataSet.py

+ 1 - 6
KCG/base/backend/DataSet.py

@@ -196,13 +196,8 @@ class DataSet(object):
 
         finedelay_factor = board_config.get("chip_delay_factor")
 
-        #TRIAGE:
-        #FMC Banks are currently (18.12.2020) switched, so the slots for the
-        #ADC delay slots 1,2,3,4 are for ADCs 5,6,7,8 and vice versa
         fdelays = board_config.get("chip_delay")
-        finedelays = fdelays[4:] + fdelays[:4]
-        
-        finedelays = [i * finedelay_factor for i in finedelays]
+        finedelays = [i * finedelay_factor for i in fdelays]