mirror of
https://github.com/MikaylaFischler/cc-mek-scada.git
synced 2024-08-30 18:22:34 +00:00
more descriptive comments
This commit is contained in:
parent
214f2d9028
commit
51111f707f
@ -205,7 +205,7 @@ comms.modbus_packet = function ()
|
|||||||
-- get raw to send
|
-- get raw to send
|
||||||
public.raw_sendable = function () return self.raw end
|
public.raw_sendable = function () return self.raw end
|
||||||
|
|
||||||
-- get this packet
|
-- get this packet as a frame with an immutable relation to this object
|
||||||
public.get = function ()
|
public.get = function ()
|
||||||
---@class modbus_frame
|
---@class modbus_frame
|
||||||
local frame = {
|
local frame = {
|
||||||
@ -298,7 +298,7 @@ comms.rplc_packet = function ()
|
|||||||
-- get raw to send
|
-- get raw to send
|
||||||
public.raw_sendable = function () return self.raw end
|
public.raw_sendable = function () return self.raw end
|
||||||
|
|
||||||
-- get this packet
|
-- get this packet as a frame with an immutable relation to this object
|
||||||
public.get = function ()
|
public.get = function ()
|
||||||
---@class rplc_frame
|
---@class rplc_frame
|
||||||
local frame = {
|
local frame = {
|
||||||
@ -382,7 +382,7 @@ comms.mgmt_packet = function ()
|
|||||||
-- get raw to send
|
-- get raw to send
|
||||||
public.raw_sendable = function () return self.raw end
|
public.raw_sendable = function () return self.raw end
|
||||||
|
|
||||||
-- get this packet
|
-- get this packet as a frame with an immutable relation to this object
|
||||||
public.get = function ()
|
public.get = function ()
|
||||||
---@class mgmt_frame
|
---@class mgmt_frame
|
||||||
local frame = {
|
local frame = {
|
||||||
@ -463,7 +463,7 @@ comms.coord_packet = function ()
|
|||||||
-- get raw to send
|
-- get raw to send
|
||||||
public.raw_sendable = function () return self.raw end
|
public.raw_sendable = function () return self.raw end
|
||||||
|
|
||||||
-- get this packet
|
-- get this packet as a frame with an immutable relation to this object
|
||||||
public.get = function ()
|
public.get = function ()
|
||||||
---@class coord_frame
|
---@class coord_frame
|
||||||
local frame = {
|
local frame = {
|
||||||
@ -544,7 +544,7 @@ comms.capi_packet = function ()
|
|||||||
-- get raw to send
|
-- get raw to send
|
||||||
public.raw_sendable = function () return self.raw end
|
public.raw_sendable = function () return self.raw end
|
||||||
|
|
||||||
-- get this packet
|
-- get this packet as a frame with an immutable relation to this object
|
||||||
public.get = function ()
|
public.get = function ()
|
||||||
---@class capi_frame
|
---@class capi_frame
|
||||||
local frame = {
|
local frame = {
|
||||||
|
Loading…
Reference in New Issue
Block a user