2012-03-02 19:22:03 +00:00
|
|
|
#errlogInit(5000)
|
|
|
|
< envPaths
|
|
|
|
|
2019-04-09 11:42:21 -05:00
|
|
|
# Tell EPICS all about the record types, device-support modules, drivers, etc.
|
|
|
|
dbLoadDatabase("../../dbd/acs.dbd")
|
|
|
|
acs_registerRecordDeviceDriver(pdbbase)
|
|
|
|
|
|
|
|
# Port 2 on a Moxa
|
2024-05-20 14:14:36 -05:00
|
|
|
#!drvAsynIPPortConfigure("serial1", "192.168.1.16:4002",0,0,0)
|
2019-04-09 11:42:21 -05:00
|
|
|
# Local serial port
|
|
|
|
#!drvAsynSerialPortConfigure("serial1", "/dev/ttyS0", 0, 0, 0)
|
2024-05-20 14:14:36 -05:00
|
|
|
drvAsynSerialPortConfigure("serial1", "/tmp/motorport", 0, 0, 0)
|
|
|
|
asynSetOption("serial1", 0, "baud", "115200")
|
|
|
|
asynSetOption("serial1", 0, "bits", "8")
|
|
|
|
asynSetOption("serial1", 0, "parity", "none")
|
|
|
|
asynSetOption("serial1", 0, "stop", "1")
|
|
|
|
|
|
|
|
# not sure if these two are needed or what they should be set to:
|
|
|
|
#!asynSetOption("serial1", 0, "clocal", "Y")
|
|
|
|
#!asynSetOption("serial1", 0, "crtscts", "Y")
|
|
|
|
|
2012-03-02 19:22:03 +00:00
|
|
|
asynOctetSetInputEos("serial1",0,"\r")
|
|
|
|
asynOctetSetOutputEos("serial1",0,"\r")
|
|
|
|
asynSetTraceIOMask("serial1", 0, 2)
|
|
|
|
#asynSetTraceMask("serial1", 0, 255)
|
|
|
|
|
2024-05-20 14:14:36 -05:00
|
|
|
MCB4BCreateController("MCB4B1", "serial1", 1, 100, 5000)
|
2012-03-02 19:22:03 +00:00
|
|
|
|
|
|
|
### Motors
|
|
|
|
dbLoadTemplate "motor.substitutions.mcb4b"
|
|
|
|
|
|
|
|
dbLoadRecords("$(ASYN)/db/asynRecord.db","P=IOC:,R=serial1,PORT=serial1,ADDR=0,OMAX=80,IMAX=80")
|
|
|
|
|
|
|
|
iocInit
|
|
|
|
|
|
|
|
# This IOC does not use save/restore, so set values of some PVs
|
|
|
|
dbpf("IOC:m1.RTRY", "0")
|
|
|
|
dbpf("IOC:m1.TWV", "0.1")
|