mirror of
https://github.com/MikaylaFischler/cc-mek-scada.git
synced 2024-08-30 18:22:34 +00:00
13 lines
353 B
Lua
13 lines
353 B
Lua
-- 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
|
|
-- expected number of reactors
|
|
NUM_REACTORS = 4
|
|
-- 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
|