소스 검색

Re-Introduced PLL Status LED

Timo Dritschler 3 년 전
부모
커밋
5825c15664
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      KCG/base/ControlWidget.py

+ 2 - 2
KCG/base/ControlWidget.py

@@ -232,11 +232,11 @@ class BoardControl(kcgw.KCGWidgets):
         self.pipeline_led       = StatusLED(tr("Label", "DataFlow Pipeline"))
         self.master_control_led = StatusLED(tr("Label", "Master Control"))
         #self.data_check_led     = StatusLED(tr("Label", "Data Check"))
-        #self.pll_ld_led         = StatusLED(tr("Label", "PLL_LD"))
+        self.pll_ld_led         = StatusLED(tr("Label", "PLL Lock"))
         self.statusLayout.addWidget(self.pipeline_led)
         self.statusLayout.addWidget(self.master_control_led)
         #self.statusLayout.addWidget(self.data_check_led)
-        #self.statusLayout.addWidget(self.pll_ld_led)
+        self.statusLayout.addWidget(self.pll_ld_led)
 
         # -----------[ Buttons ]--------------
         from functools import partial