50 lines
1.8 KiB
Plaintext
50 lines
1.8 KiB
Plaintext
##############################################################################
|
|
## Example config for el7031
|
|
|
|
require ecmccfg "ENG_MODE=1"
|
|
|
|
# Load components lib
|
|
require ecmccomp
|
|
|
|
##############################################################################
|
|
## Configure hardware
|
|
|
|
epicsEnvSet("ENC_SLAVE", "3")
|
|
${SCRIPTEXEC} ${ecmccfg_DIR}addSlave.cmd, "SLAVE_ID=$(ENC_SLAVE), HW_DESC=EL5042"
|
|
|
|
#- Apply motor config with some custom macros
|
|
${SCRIPTEXEC} ${ecmccomp_DIR}applyComponent.cmd "COMP=Encoder-Renishaw-32bit-BISS-C,CH_ID=2"
|
|
|
|
${SCRIPTEXEC} ${ecmccfg_DIR}addSlave.cmd, "SLAVE_ID=9, HW_DESC=EL7041-0052"
|
|
|
|
#- Apply motor config with some custom macros
|
|
${SCRIPTEXEC} ${ecmccomp_DIR}applyComponent.cmd "COMP=Motor-Generic-2Phase-Stepper,MACROS='I_MAX_MA=1000,I_STDBY_MA=500,U_NOM_MV=48000,R_COIL_MOHM=1230,STEPS=400'"
|
|
|
|
epicsEnvSet("DRV_SLAVE", "10")
|
|
${SCRIPTEXEC} ${ecmccfg_DIR}addSlave.cmd, "SLAVE_ID=$(DRV_SLAVE), HW_DESC=EL7041-0052"
|
|
|
|
#- Apply motor config with some custom macros
|
|
${SCRIPTEXEC} ${ecmccomp_DIR}applyComponent.cmd "COMP=Motor-Generic-2Phase-Stepper,MACROS='I_MAX_MA=1000,I_STDBY_MA=500,U_NOM_MV=48000,R_COIL_MOHM=1230,STEPS=400'"
|
|
|
|
#Apply hardware configuration
|
|
ecmcConfigOrDie "Cfg.EcApplyConfig(1)"
|
|
|
|
##############################################################################
|
|
## AXIS 1
|
|
#
|
|
${SCRIPTEXEC} ${ECMC_CONFIG_ROOT}loadYamlAxis.cmd, "FILE=./cfg/axis_el7041_no_plc_analog_il.yaml"
|
|
|
|
##############################################################################
|
|
############# Configure diagnostics:
|
|
|
|
ecmcConfigOrDie "Cfg.EcSetDiagnostics(1)"
|
|
ecmcConfigOrDie "Cfg.EcEnablePrintouts(0)"
|
|
ecmcConfigOrDie "Cfg.EcSetDomainFailedCyclesLimit(100)"
|
|
ecmcConfigOrDie "Cfg.SetDiagAxisIndex(1)"
|
|
ecmcConfigOrDie "Cfg.SetDiagAxisFreq(2)"
|
|
ecmcConfigOrDie "Cfg.SetDiagAxisEnable(0)"
|
|
|
|
# go active
|
|
$(SCRIPTEXEC) ($(ecmccfg_DIR)setAppMode.cmd)
|
|
|