41 lines
1.6 KiB
Batchfile
Executable File
41 lines
1.6 KiB
Batchfile
Executable File
#!/usr/local/bin/iocsh
|
|
#-d
|
|
|
|
on error break
|
|
|
|
require StreamGenerator, test
|
|
|
|
epicsEnvSet("INSTR", "SQ:DMC-DAQ:")
|
|
epicsEnvSet("NAME", "SG")
|
|
|
|
# Local UDP Generator Test Config
|
|
drvAsynIPPortConfigure("ASYN_IP_PORT", "127.0.0.1:9071:54321 UDP", 0, 0, 1)
|
|
|
|
# Correlation Unit Config
|
|
# drvAsynIPPortConfigure("ASYN_IP_PORT", "172.28.69.20:54321:54321 UDP", 0, 0, 1)
|
|
|
|
# With a udpQueue and sortQueue size of 10'000 packets, we can hold in memory
|
|
# 10'000 * 243 = 2.43e6 events
|
|
|
|
# Kafka Broker and Topic Configuration
|
|
# asynStreamGenerator("ASYN_SG", "ASYN_IP_PORT", 4, 10000, "linkafka01:9092", "NEWEFU_TEST", "NEWEFU_TEST2", 10000, 20480)
|
|
# asynStreamGenerator("ASYN_SG", "ASYN_IP_PORT", 4, 10000, "ess01:9092", "NEWEFU_TEST", "NEWEFU_TEST2", 10000, 20480)
|
|
|
|
# Don't send any kafka messages
|
|
asynStreamGenerator("ASYN_SG", "ASYN_IP_PORT", 4, 10000, "", "", "", 0, 0)
|
|
|
|
dbLoadRecords("$(StreamGenerator_DB)correlation_unit.db", "INSTR=$(INSTR), NAME=$(NAME), PORT=ASYN_SG")
|
|
|
|
dbLoadRecords("$(StreamGenerator_DB)daq_common.db", "INSTR=$(INSTR), NAME=$(NAME), PORT=ASYN_SG, CHANNELS=5")
|
|
|
|
# Monitor Channels
|
|
dbLoadRecords("$(StreamGenerator_DB)channels.db", "INSTR=$(INSTR), NAME=$(NAME), PORT=ASYN_SG, CHANNEL=1")
|
|
dbLoadRecords("$(StreamGenerator_DB)channels.db", "INSTR=$(INSTR), NAME=$(NAME), PORT=ASYN_SG, CHANNEL=2")
|
|
dbLoadRecords("$(StreamGenerator_DB)channels.db", "INSTR=$(INSTR), NAME=$(NAME), PORT=ASYN_SG, CHANNEL=3")
|
|
dbLoadRecords("$(StreamGenerator_DB)channels.db", "INSTR=$(INSTR), NAME=$(NAME), PORT=ASYN_SG, CHANNEL=4")
|
|
|
|
# Detector Count Channel
|
|
dbLoadRecords("$(StreamGenerator_DB)channels.db", "INSTR=$(INSTR), NAME=$(NAME), PORT=ASYN_SG, CHANNEL=5")
|
|
|
|
iocInit()
|