From 0e1b0002d3d12264122cc2e8ed282ed3f3987e4d Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Fri, 19 Jun 2026 18:50:51 +0200 Subject: [PATCH] set a transmission count for rt --- modules/rds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rds.py b/modules/rds.py index 644bff3..4e2fdc4 100644 --- a/modules/rds.py +++ b/modules/rds.py @@ -27,7 +27,7 @@ class RT_Set(uecp.commands.UECPCommand): def encode(self) -> list[int]: return [ self.ELEMENT_CODE, 0, 0, - 1+len(self.data), 1] + list(self.data) + 1+len(self.data), (5 << 1) | 1] + list(self.data) DEBUG = False