encode_group

This commit is contained in:
2026-04-26 11:43:14 +02:00
parent ff6460ba0f
commit 33eb2c1c60
9 changed files with 67 additions and 28 deletions
+10
View File
@@ -243,6 +243,16 @@ mec_handlers[0x19] = function (data)
end)
return 2
end
mec_handlers[0x16] = function (data)
-- Group sequence for stream 0
local dsn = string.byte(data, 2)
local mel = string.byte(data, 3)
local group_sequence = string.sub(data, 4, 3+mel)
dsn_helper(dsn, function ()
rds.set_grpseq(group_sequence)
end)
return 4 + mel
end
mec_handlers[0x23] = function (data)
-- Site address
local control_bits = string.byte(data, 2)