-
Notifications
You must be signed in to change notification settings - Fork 2
Useful tools
IsabellaRey edited this page Sep 7, 2016
·
17 revisions
Wiki > The Backend System > Useful tools
To get the value of a compressed, hexed PV (such as those on the blockserver) type into an EPICS terminal:
caget -S -t PV | uzhex
where PV is the PV you are looking for
To send compressed, hexed values to a PV (such as those on the blockserver) type into an EPICS terminal:
for /f "tokens=*" %x in ('zhex VAL') do caput -S PV %x
where PV is as above and VAL is the data you wish to send