#580 comment updates, rtu listen fix, and trusted range init change

This commit is contained in:
Mikayla Fischler
2025-11-02 14:30:02 -05:00
parent 0417986c15
commit d9001090c2
3 changed files with 31 additions and 17 deletions

View File

@@ -164,12 +164,14 @@ function supervisor.comms(_version, fp_ok, facility)
last_est_acks = {} ---@type ESTABLISH_ACK[]
}
comms.set_trusted_range(config.TrustedRange)
if config.WirelessModem then
comms.set_trusted_range(config.TrustedRange)
end
-- pass system data and objects to svsessions
svsessions.init(fp_ok, config, facility)
-- PRIVATE FUNCTIONS --
--#region PRIVATE FUNCTIONS --
-- send an establish request response
---@param nic nic
@@ -376,7 +378,9 @@ function supervisor.comms(_version, fp_ok, facility)
--#endregion
-- PUBLIC FUNCTIONS --
--#endregion
--#region PUBLIC FUNCTIONS --
---@class superv_comms
local public = {}
@@ -601,6 +605,8 @@ function supervisor.comms(_version, fp_ok, facility)
end
end
--#endregion
return public
end