Files
startup/syncTS
2010-01-04 12:43:59 +00:00

37 lines
732 B
Plaintext

cd LIB
# load EPICS system core
ld < iocCore.syncTS
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
require "mrcevg"
require "mrcevr"
require "TSstat"
TSconfigure(0,20,1000,18323,18322,250,0)
# $Id: syncTS,v 1.2 2010/01/04 12:43:59 zimoch Exp $
# end of startup.script_common