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