Skip to content
Snippets Groups Projects
Commit 62dc276f authored by Gijs's avatar Gijs
Browse files

CCD service scripts

parent c22d68da
Branches
Tags
No related merge requests found
Pipeline #58527 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.
Please register or to comment