Files
startup/R3.13
2010-01-04 12:43:59 +00:00

34 lines
671 B
Plaintext

cd LIB
# load EPICS system core
ld < iocCore
ld < seq
# load EPICS tools like "require"
ld < utilitiesLib
ld < miscLib
# disable floating point exceptions
slsFppInit
# next line allows to continue even if mounting of /ioc failed
cd bootInfo("%H:")
cd HOME
# insert boot infos into database
bootNotify (INSTBASE, "sls/bin/iocBootNotify.sh")
# try for user-defined menus scan and convert
dbLoadDatabase("dbd/scan.dbd")
dbLoadDatabase("dbd/convert.dbd")
dbLoadDatabase("dbd/slsConvert.dbd")
#load standard drivers
require "base"
# setup clock
TSconfigure(0,10,10,18323,18322,250,1)
# $Id: R3.13,v 1.1 2010/01/04 12:43:59 zimoch Exp $
# end of startup.script_common