cc-mek-scada/supervisor/config.lua

13 lines
353 B
Lua
Raw Normal View History

2022-01-22 19:47:54 +00:00
-- scada network listen for PLC's and RTU's
SCADA_DEV_LISTEN = 16000
-- listen port for SCADA supervisor access by coordinators
SCADA_SV_LISTEN = 16100
2022-01-13 15:23:38 +00:00
-- expected number of reactors
NUM_REACTORS = 4
2022-04-29 17:36:00 +00:00
-- log path
LOG_PATH = "/log.txt"
-- log mode
-- 0 = APPEND (adds to existing file on start)
-- 1 = NEW (replaces existing file on start)
LOG_MODE = 0