From cf881548d7994fa4732c5e71d381fa46e6600faa Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Wed, 7 Jun 2023 12:25:50 -0400 Subject: [PATCH] config file comments --- pocket/config.lua | 6 +++--- reactor-plc/config.lua | 4 ++-- rtu/config.lua | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pocket/config.lua b/pocket/config.lua index 64705ab..0c35b59 100644 --- a/pocket/config.lua +++ b/pocket/config.lua @@ -1,10 +1,10 @@ local config = {} --- supervisor access channel +-- supervisor comms channel config.SVR_CHANNEL = 16240 --- coordinator access channel +-- coordinator comms channel config.CRD_CHANNEL = 16243 --- pocket communication channel +-- pocket comms channel config.PKT_CHANNEL = 16244 -- max trusted modem message distance (0 to disable check) config.TRUSTED_RANGE = 0 diff --git a/reactor-plc/config.lua b/reactor-plc/config.lua index 6845ec1..3462b2c 100644 --- a/reactor-plc/config.lua +++ b/reactor-plc/config.lua @@ -9,9 +9,9 @@ config.REACTOR_ID = 1 -- when emergency coolant is needed due to low coolant -- config.EMERGENCY_COOL = { side = "right", color = nil } --- supervisor access channel +-- supervisor comms channel config.SVR_CHANNEL = 16240 --- PLC communication channel +-- PLC comms channel config.PLC_CHANNEL = 16241 -- max trusted modem message distance (0 to disable check) config.TRUSTED_RANGE = 0 diff --git a/rtu/config.lua b/rtu/config.lua index c4eae91..2279759 100644 --- a/rtu/config.lua +++ b/rtu/config.lua @@ -2,9 +2,9 @@ local rsio = require("scada-common.rsio") local config = {} --- supervisor access channel +-- supervisor comms channel config.SVR_CHANNEL = 16240 --- RTU/MODBUS communication channel +-- RTU/MODBUS comms channel config.RTU_CHANNEL = 16242 -- max trusted modem message distance (0 to disable check) config.TRUSTED_RANGE = 0