Browse Source

Fixup (FMC Bank Order)

kapture2 3 years ago
parent
commit
1ca0c906ec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      KCG/base/backend/DataSet.py

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

@@ -200,7 +200,7 @@ class DataSet(object):
         #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 = fdelays[4:] + fdelays[:4]
         
         finedelays = [i * finedelay_factor for i in finedelays]