Skip to content
Snippets Groups Projects
Commit 200e0950 authored by Paulus Kruger's avatar Paulus Kruger
Browse files

Merge branch 'master' of https://git.astron.nl/lofar2.0/pypcc

parents 80c3bf7a 62dc276f
No related branches found
No related tags found
No related merge requests found
Pipeline #58652 passed
#!/bin/bash
sudo python3.11 setup.py install
sudo systemctl restart ccdtr.service
#!/bin/bash
sudo cp bin/*.service /lib/systemd/system/.
sudo systemctl daemon-reload
sudo systemctl enable ccdtr.service
from test_common import *
connect("opc.tcp://localhost:4843/")
#callmethod("APSCT_off")
#time.sleep(1)
callmethod("CCD_on")
#callmethod("APSCT_160MHz_on")
for x in range(10):
busy=get_value("CCDTR_translator_busy_R")
print(busy)
if not(busy): break
time.sleep(0.1)
#time.sleep(1)
#callmethod("CLK_PLL_setup")
#exit()
#time.sleep(1)
#callmethod("RCU_on")
#callmethod("RCU_on")
#time.sleep(1)
#callmethod("ADC_on")
disconnect();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment