move all examples to separate top level build areas.
Documentation needs updating.
This commit is contained in:
7
exampleServer/iocBoot/Makefile
Normal file
7
exampleServer/iocBoot/Makefile
Normal file
@@ -0,0 +1,7 @@
|
||||
TOP = ..
|
||||
include $(TOP)/configure/CONFIG
|
||||
DIRS += $(wildcard *ioc*)
|
||||
DIRS += $(wildcard as*)
|
||||
DIRS += $(wildcard example*)
|
||||
include $(EPICS_BASE)/configure/RULES_DIRS
|
||||
|
||||
5
exampleServer/iocBoot/exampleServer/Makefile
Normal file
5
exampleServer/iocBoot/exampleServer/Makefile
Normal file
@@ -0,0 +1,5 @@
|
||||
TOP = ../..
|
||||
include $(TOP)/configure/CONFIG
|
||||
ARCH = $(EPICS_HOST_ARCH)
|
||||
TARGETS = envPaths
|
||||
include $(TOP)/configure/RULES.ioc
|
||||
23
exampleServer/iocBoot/exampleServer/st.cmd
Normal file
23
exampleServer/iocBoot/exampleServer/st.cmd
Normal file
@@ -0,0 +1,23 @@
|
||||
< envPaths
|
||||
|
||||
cd ${TOP}
|
||||
|
||||
## Register all support components
|
||||
dbLoadDatabase("dbd/exampleServer.dbd")
|
||||
exampleServer_registerRecordDeviceDriver(pdbbase)
|
||||
|
||||
## Load record instances
|
||||
dbLoadRecords("db/dbScalar.db","name=pvdouble,type=ao")
|
||||
dbLoadRecords("db/dbArray.db","name=pvdoubleArray,type=DOUBLE")
|
||||
dbLoadRecords("db/dbStringArray.db","name=pvstringArray")
|
||||
dbLoadRecords("db/dbEnum.db","name=pvenum")
|
||||
dbLoadRecords("db/dbCounter.db","name=pvcounter");
|
||||
|
||||
cd ${TOP}/iocBoot/${IOC}
|
||||
iocInit()
|
||||
dbl
|
||||
epicsThreadSleep(1.0)
|
||||
exampleServerCreateRecord pvaServer
|
||||
startPVAServer
|
||||
pvdbl
|
||||
|
||||
Reference in New Issue
Block a user