#8 redstone RTU output commands

This commit is contained in:
Mikayla Fischler
2022-05-16 11:54:34 -04:00
parent 530a40b0aa
commit 11b89b679d
2 changed files with 127 additions and 9 deletions

View File

@@ -1,7 +1,9 @@
local comms = require("scada-common.comms")
local log = require("scada-common.log")
local mqueue= require("scada-common.mqueue")
local rsio = require("scada-common.rsio")
local types = require("scada-common.types")
local util = require("scada-common.util")
local txnctrl = require("supervisor.session.rtu.txnctrl")
@@ -18,9 +20,21 @@ local IO_MODE = rsio.IO_MODE
local rtu_t = types.rtu_t
local RS_RTU_S_CMDS = {
}
local RS_RTU_S_DATA = {
RS_COMMAND = 1
}
redstone.RS_RTU_S_CMDS = RS_RTU_S_CMDS
redstone.RS_RTU_S_DATA = RS_RTU_S_DATA
local TXN_TYPES = {
DI_READ = 0,
INPUT_REG_READ = 1
COIL_WRITE = 1,
INPUT_REG_READ = 2,
HOLD_REG_WRITE = 3
}
local PERIODICS = {
@@ -43,6 +57,7 @@ redstone.new = function (session_id, advert, out_queue)
local self = {
uid = advert.index,
reactor = advert.reactor,
in_q = mqueue.new(),
out_q = out_queue,
transaction_controller = txnctrl.new(),
has_di = false,
@@ -65,10 +80,12 @@ redstone.new = function (session_id, advert, out_queue)
-- INITIALIZE --
-- create all channels as disconnected
for _ = 1, #RS_IO do
table.insert(self.db, IO_LVL.DISCONNECT)
end
-- setup I/O
for i = 1, #advert.rsio do
local channel = advert.rsio[i]
local mode = rsio.get_io_mode(channel)
@@ -95,11 +112,11 @@ redstone.new = function (session_id, advert, out_queue)
-- PRIVATE FUNCTIONS --
local _send_request = function (txn_type, f_code, register_range)
local _send_request = function (txn_type, f_code, parameters)
local m_pkt = comms.modbus_packet()
local txn_id = self.transaction_controller.create(txn_type)
m_pkt.make(txn_id, self.uid, f_code, register_range)
m_pkt.make(txn_id, self.uid, f_code, parameters)
self.out_q.push_packet(m_pkt)
end
@@ -114,6 +131,16 @@ redstone.new = function (session_id, advert, out_queue)
_send_request(TXN_TYPES.INPUT_REG_READ, MODBUS_FCODE.READ_INPUT_REGS, { 1, #self.io_list.analog_in })
end
-- write coil output
local _write_coil = function (coil, value)
_send_request(TXN_TYPES.COIL_WRITE, MODBUS_FCODE.WRITE_MUL_COILS, { coil, value })
end
-- write holding register output
local _write_holding_register = function (reg, value)
_send_request(TXN_TYPES.HOLD_REG_WRITE, MODBUS_FCODE.WRITE_MUL_HOLD_REGS, { reg, value })
end
-- PUBLIC FUNCTIONS --
-- handle a packet
@@ -168,6 +195,61 @@ redstone.new = function (session_id, advert, out_queue)
-- update this runner
---@param time_now integer milliseconds
public.update = function (time_now)
-- check command queue
while self.in_q.ready() do
-- get a new message to process
local msg = self.in_q.pop()
if msg ~= nil then
if msg.qtype == mqueue.TYPE.DATA then
-- instruction with body
local cmd = msg.message ---@type queue_data
if cmd.key == RS_RTU_S_DATA.RS_COMMAND then
local rs_cmd = cmd.val ---@type rs_session_command
if self.db[rs_cmd.channel] ~= IO_LVL.DISCONNECT then
-- we have this as a connected channel
local mode = rsio.get_io_mode(rs_cmd.channel)
if mode == IO_MODE.DIGITAL_OUT then
-- record the value for retries
self.db[rs_cmd.channel] = rs_cmd.value
-- find the coil address then write to it
for i = 0, #self.digital_out do
if self.digital_out[i] == rs_cmd.channel then
_write_coil(i, rs_cmd.value)
break
end
end
elseif mode == IO_MODE.ANALOG_OUT then
-- record the value for retries
self.db[rs_cmd.channel] = rs_cmd.value
-- find the holding register address then write to it
for i = 0, #self.analog_out do
if self.analog_out[i] == rs_cmd.channel then
_write_holding_register(i, rs_cmd.value)
break
end
end
elseif mode ~= nil then
log.debug(log_tag .. "attemted write to non D/O or A/O mode " .. mode)
end
end
end
end
end
-- max 100ms spent processing queue
if util.time() - time_now > 100 then
log.warning(log_tag .. "exceeded 100ms queue process limit")
break
end
end
time_now = util.time()
-- poll digital inputs
if self.has_di then
if self.periodics.next_di_req <= time_now then
_request_discrete_inputs()
@@ -175,6 +257,7 @@ redstone.new = function (session_id, advert, out_queue)
end
end
-- poll analog inputs
if self.has_ai then
if self.periodics.next_ir_req <= time_now then
_request_input_registers()
@@ -183,7 +266,7 @@ redstone.new = function (session_id, advert, out_queue)
end
end
return public
return public, self.in_q
end
return redstone