Noch'n kleines Projekt - WinTelex
-
- Rank 3
- Beiträge: 193
- Registriert: Mi 20. Sep 2023, 16:31
- Hauptanschluß: 371126
Noch'n kleines Projekt - WinTelex
Also die Version 2.2.1 vom 10.12.2024 hat offenbar ein Bug das die im Debug Fenster keine Baudot und ACK Telegramme anzeigt obwohl der Haken drin ist.
Bin jetzt zur Version 2.1.5 wieder zurück und bei dieser Funktioniert dies wie erwartet. Aber lass dir Zeit dies hat ja auf die eigentliche Funktion keine Auswirkung.
Bin jetzt zur Version 2.1.5 wieder zurück und bei dieser Funktioniert dies wie erwartet. Aber lass dir Zeit dies hat ja auf die eigentliche Funktion keine Auswirkung.
-
- Rank 3
- Beiträge: 193
- Registriert: Mi 20. Sep 2023, 16:31
- Hauptanschluß: 371126
Noch'n kleines Projekt - WinTelex
Code: Alles auswählen
27.04.2025 16:32:00 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 79 ack=121 (0)
27.04.2025 16:32:01 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 79 ack=121 (0)
27.04.2025 16:32:02 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 79 ack=121 (0)
27.04.2025 16:32:03 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 1F 1F 1F 0A
27.04.2025 16:32:03 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 79 ack=121 (4)
27.04.2025 16:32:03 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 07 15 0A 15 0A 15 0A 15
27.04.2025 16:32:04 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A
27.04.2025 16:32:04 Warn [ItelexProtocol] [AckTimer_Elapsed] recv ack value changed timeout
27.04.2025 16:32:04 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 06 15 0A 15 0A 15 0A
27.04.2025 16:32:04 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 08 15 0A 15 0A 15 0A 15 0A
27.04.2025 16:32:04 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15
27.04.2025 16:32:04 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 0A 15 0A 15
27.04.2025 16:32:04 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15
27.04.2025 16:32:04 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 7F ack=127 (33)
Es wurden alle Pakete erfolgreich übermittelt, um 27.04.2025 16:32:03 wird beim Testsender ein weiteres Paket aus gelöst, just in dem Moment kommt ein ACK Paket vom Empfänger 27.04.2025 16:32:03 mit dem alten Wert -> Soll wäre hier 125 Zeichen -> Ist 121. Es werden weitere Pakete nachgeschoben und 27.04.2025 16:32:04 kommt der ACK Timeout. Die erwartete Änderung trifft vom Empfänger 27.04.2025 16:32:04 ein -> 127 Zeichen wurden geschrieben und du bist wieder zufrieden.
Da überschneidet sich was im Ablauf im Code und diese Meldung tritt auch am echten Itelex system auf.
Das Problem ist auch auf der Empfängerseite zu suchen die Verarbeitung erfolgt bei mir auch Event basierend. Heißt beim Empfang wird das Paket nicht unmittelbar verarbeitet sondern erst im nächsten Zyklus und da kann es passieren das einen Tick später das ACK Paket mit dem noch alten Wert versendet wird. Das auch weil die 150ms noch nicht abgelaufen sind bis das Zeichen wirklich geschrieben wurden. Auf der iTelex Hardware läuft das ähnlich der AT328 hat ja nur ein Core und die Task wird alle Zeit X abgearbeitet...
-
Topic author - Rank 12
- Beiträge: 4266
- Registriert: Do 28. Mär 2019, 09:10
- Wohnort: Marburg
- Hauptanschluß: 7822222 hael d
Noch'n kleines Projekt - WinTelex
Von welcher Version stammt jetzt diese Log-Ausgabe?
Ich habe mal eine aktuelle Version 2.2.2 auf Github abgelegt. Da werden auch die Baudot-Pakete wieder angezeigt.
Schau doch mal, was diese Version macht.
Das Ack-Packet ist übrigens keine Aufforderung, das Senden zu unterbrechen. Sondern im Gegenteil eine Info, dass bereits ein Teil der empfangenen Zeichen gedruckt und daher wieder Platz im Empfangspuffer ist. Wenn also ein "veraltetes" Ack-Packet empfangen wird, dann geht der Sender von zu wenig gedruckte Zeichen aus. Das führt also nicht dazu, dass der Sender weitersendet, sondern eher vorzeitig stoppt.
WinTlx geht von einem Empfangspuffer von 16 Zeichen beim Empfänger aus. Wenn also mehr als 16 oder mehr ungedruckte Zeichen gemeldet werden, dann wird das Senden unterbrochen.
Etwas verdächtig ist der "recv ack value changed timeout". Ich glaube, ich sehe da einen Fehler in WinTlx.
Ich habe mal eine aktuelle Version 2.2.2 auf Github abgelegt. Da werden auch die Baudot-Pakete wieder angezeigt.
Schau doch mal, was diese Version macht.
Das Ack-Packet ist übrigens keine Aufforderung, das Senden zu unterbrechen. Sondern im Gegenteil eine Info, dass bereits ein Teil der empfangenen Zeichen gedruckt und daher wieder Platz im Empfangspuffer ist. Wenn also ein "veraltetes" Ack-Packet empfangen wird, dann geht der Sender von zu wenig gedruckte Zeichen aus. Das führt also nicht dazu, dass der Sender weitersendet, sondern eher vorzeitig stoppt.
WinTlx geht von einem Empfangspuffer von 16 Zeichen beim Empfänger aus. Wenn also mehr als 16 oder mehr ungedruckte Zeichen gemeldet werden, dann wird das Senden unterbrochen.
Etwas verdächtig ist der "recv ack value changed timeout". Ich glaube, ich sehe da einen Fehler in WinTlx.
Gruß, Detlef
i-Telex: 7822222 (T1000), 114288 (F1300), 211230 (T100Z), 96868 (T37), 24394 (T68d)
Konf.-Dienst: 11160/11161, Rundsender: 11162/11163 , Baudot-Bilder: 11166, Chat-GPT: 11168
Mail-/Fax-Dienst: 11170/11171, News-Ticker: 11180/11181, hist. Ausk.: 40140, Wetter: 717171
i-Telex: 7822222 (T1000), 114288 (F1300), 211230 (T100Z), 96868 (T37), 24394 (T68d)
Konf.-Dienst: 11160/11161, Rundsender: 11162/11163 , Baudot-Bilder: 11166, Chat-GPT: 11168
Mail-/Fax-Dienst: 11170/11171, News-Ticker: 11180/11181, hist. Ausk.: 40140, Wetter: 717171
-
Topic author - Rank 12
- Beiträge: 4266
- Registriert: Do 28. Mär 2019, 09:10
- Wohnort: Marburg
- Hauptanschluß: 7822222 hael d
Noch'n kleines Projekt - WinTelex
Ich habe mal eine Version 2.2.2 auf Github abgelegt. Teste doch bitte mal damit.
Da sollten auch die Baudot-Packete wieder im Debug-Fenster angezeigt werden.
Nach diesem "recv ack value changed timeout" suche ich schon länger und ich konnte mir nie erklären, warum das auftritt.
In deinem Log habe ich das jetzt gesehen. Der Empfangspuffer war länger als 5 Sekunden leer und das WinTlx-interne Ack-Change-Timeout (keine Änderung des Empfänger-Ack-Wertes innerhalb von 5 Sekunden) schlägt zu. Das hat keine Konsequenzen, solange der Empfängerpuffer leer ist.
Aber dann sende ich, und danach kommt nochmal ein Ack ohne Änderung. Jetzt wird das Timeout aktiv und WinTlx macht intern eine Neusynchronisierung, weil es davon ausgehe, dass der Ack-Wert nicht mehr synchron ist.
Ohne diesen komplizierten Timeout-Mechanismus hat man das Problem, dass die Kommunikation zum Erliegen kommt, weil WinTlx von einem falschen Füllstand des Empfängerpuffers ausgeht, wenn der Ack-Wert nicht mehr synchron ist. Und leider ist das immer mal wieder vorgekommen.
Da sollten auch die Baudot-Packete wieder im Debug-Fenster angezeigt werden.
Nach diesem "recv ack value changed timeout" suche ich schon länger und ich konnte mir nie erklären, warum das auftritt.
In deinem Log habe ich das jetzt gesehen. Der Empfangspuffer war länger als 5 Sekunden leer und das WinTlx-interne Ack-Change-Timeout (keine Änderung des Empfänger-Ack-Wertes innerhalb von 5 Sekunden) schlägt zu. Das hat keine Konsequenzen, solange der Empfängerpuffer leer ist.
Aber dann sende ich, und danach kommt nochmal ein Ack ohne Änderung. Jetzt wird das Timeout aktiv und WinTlx macht intern eine Neusynchronisierung, weil es davon ausgehe, dass der Ack-Wert nicht mehr synchron ist.
Ohne diesen komplizierten Timeout-Mechanismus hat man das Problem, dass die Kommunikation zum Erliegen kommt, weil WinTlx von einem falschen Füllstand des Empfängerpuffers ausgeht, wenn der Ack-Wert nicht mehr synchron ist. Und leider ist das immer mal wieder vorgekommen.
Gruß, Detlef
i-Telex: 7822222 (T1000), 114288 (F1300), 211230 (T100Z), 96868 (T37), 24394 (T68d)
Konf.-Dienst: 11160/11161, Rundsender: 11162/11163 , Baudot-Bilder: 11166, Chat-GPT: 11168
Mail-/Fax-Dienst: 11170/11171, News-Ticker: 11180/11181, hist. Ausk.: 40140, Wetter: 717171
i-Telex: 7822222 (T1000), 114288 (F1300), 211230 (T100Z), 96868 (T37), 24394 (T68d)
Konf.-Dienst: 11160/11161, Rundsender: 11162/11163 , Baudot-Bilder: 11166, Chat-GPT: 11168
Mail-/Fax-Dienst: 11170/11171, News-Ticker: 11180/11181, hist. Ausk.: 40140, Wetter: 717171
-
- Rank 1
- Beiträge: 50
- Registriert: Mi 19. Okt 2022, 04:57
- Hauptanschluß: 27387
Noch'n kleines Projekt - WinTelex
Question: Has any member been the recipient of SPAM messages via I-TELEX?
Maybe the risk is not that high?
I do appreciate Detlef looking into this of course - Thank you
-byes- bambi:
Maybe the risk is not that high?
I do appreciate Detlef looking into this of course - Thank you
-byes- bambi:
-
Topic author - Rank 12
- Beiträge: 4266
- Registriert: Do 28. Mär 2019, 09:10
- Wohnort: Marburg
- Hauptanschluß: 7822222 hael d
Noch'n kleines Projekt - WinTlx
We had some cases of spam when I released the program in 2019. This was because I included the configuration file with the data for the Subscriber Server in the first version. Since I removed this data from Github, I'm not aware of any more cases.
Last year, a new participant requested an i-Telex number to participate in i-Telex exclusively with WinTlx. Without any real teleprinter. This request was, of course, rejected.
Last year, a new participant requested an i-Telex number to participate in i-Telex exclusively with WinTlx. Without any real teleprinter. This request was, of course, rejected.
Gruß, Detlef
i-Telex: 7822222 (T1000), 114288 (F1300), 211230 (T100Z), 96868 (T37), 24394 (T68d)
Konf.-Dienst: 11160/11161, Rundsender: 11162/11163 , Baudot-Bilder: 11166, Chat-GPT: 11168
Mail-/Fax-Dienst: 11170/11171, News-Ticker: 11180/11181, hist. Ausk.: 40140, Wetter: 717171
i-Telex: 7822222 (T1000), 114288 (F1300), 211230 (T100Z), 96868 (T37), 24394 (T68d)
Konf.-Dienst: 11160/11161, Rundsender: 11162/11163 , Baudot-Bilder: 11166, Chat-GPT: 11168
Mail-/Fax-Dienst: 11170/11171, News-Ticker: 11180/11181, hist. Ausk.: 40140, Wetter: 717171
-
- Rank 3
- Beiträge: 193
- Registriert: Mi 20. Sep 2023, 16:31
- Hauptanschluß: 371126
Noch'n kleines Projekt - WinTelex
Die Ausgabe stammt von der Version 2.1.5..
Ich teste die Version 2.2.2 nochmal und Danke dir für den Support!
Ich teste die Version 2.2.2 nochmal und Danke dir für den Support!
-
- Rank 3
- Beiträge: 193
- Registriert: Mi 20. Sep 2023, 16:31
- Hauptanschluß: 371126
Noch'n kleines Projekt - WinTelex
Code: Alles auswählen
27.04.2025 16:27:35 Debug [ItelexProtocol] [SendCmd] Send packet ProtocolVersion 07 07 01 77 74 32 31 35 00
27.04.2025 16:27:35 Debug [ItelexProtocol] [Listener] ConnectionState=TcpConnected Texting=Itelex ElapsedMilliseconds=2019ms
27.04.2025 16:27:38 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 00 ack=0 (0)
27.04.2025 16:27:39 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 00 ack=0 (0)
27.04.2025 16:27:40 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 00 ack=0 (0)
27.04.2025 16:27:41 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 1F
27.04.2025 16:27:41 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 06 0A 15 0A 15 0A 15
27.04.2025 16:27:41 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 0A 15 0A 15
27.04.2025 16:27:41 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 0A 15 0A 15
27.04.2025 16:27:41 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 0A 15 0A 15
27.04.2025 16:27:41 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A
27.04.2025 16:27:41 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 04 ack=4 (15)
27.04.2025 16:27:41 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15
27.04.2025 16:27:42 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A
27.04.2025 16:27:42 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15
27.04.2025 16:27:42 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A
27.04.2025 16:27:42 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15
27.04.2025 16:27:42 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 0A 15 0A 15
27.04.2025 16:27:42 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 08 0A 15 0A 15 0A 15 0A 15
27.04.2025 16:27:42 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 0A ack=10 (51)
27.04.2025 16:27:42 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 0A 15 0A 15
27.04.2025 16:27:43 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 0A 15 0A 15
27.04.2025 16:27:43 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 02 08 0A 15 0A
27.04.2025 16:27:43 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 15 0A 15 0A
27.04.2025 16:27:43 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 15 0A 15 0A
27.04.2025 16:27:43 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15
27.04.2025 16:27:43 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 0A 15 0A 15
27.04.2025 16:27:43 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A
27.04.2025 16:27:43 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15
27.04.2025 16:27:43 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 11 ack=17 (84)
27.04.2025 16:27:43 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A
27.04.2025 16:27:44 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 07 15 0A 15 0A 15 0A 15
27.04.2025 16:27:44 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 0A 15 0A 15
Schon 2sec nach dem Senden eines Block aus dem Testgenerator hast du schon 51 Zeichen gesendet obwohl die Gegenseite zu dieser Zeit gerade mal 10 geschrieben hat. 1sec später sind es schon 83 und erst danach renkt sich die Sache ein. Da steht es 94 zu 30

Bei mir läuft genau deswegen der 64k Puffer über da diese ja nicht abgeholt werden können. Bei mir ist es so das die Puffer im Stack sehr klein gehalten sind, eigentlich sollten sie nicht mehr wie die vereinbarten 48 Zeichen aufnehmen. Der Gedanke liegt darin das ich nicht weis wie schnell die Zeichen der Anwender Abholt und jene muss dafür sorge tragen diese abzuholen und wohin zu schieben wenn der Puffer vom Stack entgegen der vereinbarten Rate zuläuft. Deswegen mach ich es so das die Pakete ohne Flusssteuerung nach Baudrate terminiert werden und nie wirklich schneller versendet werden. Es sei denn die Baudrate ist variable aber da ist dann auch noch ein Sicherheitshaken drin...
-
Topic author - Rank 12
- Beiträge: 4266
- Registriert: Do 28. Mär 2019, 09:10
- Wohnort: Marburg
- Hauptanschluß: 7822222 hael d
Noch'n kleines Projekt - WinTelex
Das ist interessant. Warum wird gegenüber deinem Empfänger der Pufferfüllstand ignoriert?
So sieht das aus, wenn ich an ein i-Telex-System sende:
Man sieht hier in Zeile 22:09:31.201, dass beim Erreichen eines Füllstandes von 15 das Senden eingestellt wird, bis in 22:09:33.423 ein neues Ack eintrifft und signalisiert, dass wieder Platz im Empfangspuffer des Empfängers ist. Erst dann wird weiter gesendet.
Ich habe das Logging erweitert wie du siehst. Ich brauche eine höhere Timestamp-Auflösung, um zu sehen, was da genau passiert. Und die Werte meiner Pufferberechnung.
Könntest du bitte nochmal mit der 2.2.3 testen?
So sieht das aus, wenn ich an ein i-Telex-System sende:
Code: Alles auswählen
28.04.2025 22:09:27.548 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 00 (ack=0 send=0 buf=0)
28.04.2025 22:09:30.229 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 1F 0A 15 0A (ack=0 send=0 buf=0)
28.04.2025 22:09:30.337 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (ack=0 send=4 buf=4)
28.04.2025 22:09:30.445 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (ack=0 send=9 buf=9)
28.04.2025 22:09:30.553 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (ack=0 send=14 buf=14)
28.04.2025 22:09:31.080 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 06 (ack=6 send=16 buf=10)
28.04.2025 22:09:31.093 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (ack=6 send=16 buf=10)
28.04.2025 22:09:31.201 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (ack=6 send=21 buf=15)
28.04.2025 22:09:33.423 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 16 (ack=22 send=22 buf=0)
28.04.2025 22:09:33.466 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (ack=22 send=22 buf=0)
28.04.2025 22:09:33.575 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (ack=22 send=27 buf=5)
28.04.2025 22:09:33.683 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (ack=22 send=32 buf=10)
28.04.2025 22:09:33.791 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (ack=22 send=37 buf=15)
28.04.2025 22:09:36.955 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 23 (ack=35 send=38 buf=3)
Ich habe das Logging erweitert wie du siehst. Ich brauche eine höhere Timestamp-Auflösung, um zu sehen, was da genau passiert. Und die Werte meiner Pufferberechnung.
Könntest du bitte nochmal mit der 2.2.3 testen?

Gruß, Detlef
i-Telex: 7822222 (T1000), 114288 (F1300), 211230 (T100Z), 96868 (T37), 24394 (T68d)
Konf.-Dienst: 11160/11161, Rundsender: 11162/11163 , Baudot-Bilder: 11166, Chat-GPT: 11168
Mail-/Fax-Dienst: 11170/11171, News-Ticker: 11180/11181, hist. Ausk.: 40140, Wetter: 717171
i-Telex: 7822222 (T1000), 114288 (F1300), 211230 (T100Z), 96868 (T37), 24394 (T68d)
Konf.-Dienst: 11160/11161, Rundsender: 11162/11163 , Baudot-Bilder: 11166, Chat-GPT: 11168
Mail-/Fax-Dienst: 11170/11171, News-Ticker: 11180/11181, hist. Ausk.: 40140, Wetter: 717171
-
- Rank 3
- Beiträge: 193
- Registriert: Mi 20. Sep 2023, 16:31
- Hauptanschluß: 371126
Noch'n kleines Projekt - WinTelex
Code: Alles auswählen
29.04.2025 15:31:45.863 Info [ItelexProtocol] [Listener] incoming connection from 192.168.1.251
29.04.2025 15:31:47.825 Info [ItelexProtocol] [DecodePacket] recv protocol version cmd 07 05 02 39 35 33 00, version=2 '953'
29.04.2025 15:31:47.825 Debug [ItelexProtocol] [SendCmd] Send packet ProtocolVersion 07 06 01 77 74 32 32 33
29.04.2025 15:31:47.905 Debug [ItelexProtocol] [Listener] ConnectionState=TcpConnected Texting=Itelex ElapsedMilliseconds=2026ms
29.04.2025 15:31:50.900 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 00 (rem_ack=0 send=0 rem_buf=0)
29.04.2025 15:31:51.922 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 00 (rem_ack=0 send=0 rem_buf=0)
29.04.2025 15:31:52.593 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 1F (rem_ack=0 send=0 rem_buf=0)
29.04.2025 15:31:52.816 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 09 0A 15 0A 15 0A 15 0A 15 0A (rem_ack=0 send=1 rem_buf=1)
29.04.2025 15:31:52.927 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=0 send=10 rem_buf=10)
29.04.2025 15:31:52.927 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 01 (rem_ack=1 send=10 rem_buf=9)
29.04.2025 15:31:53.039 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=1 send=15 rem_buf=14)
29.04.2025 15:31:53.150 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=1 send=20 rem_buf=19)
29.04.2025 15:31:53.261 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=1 send=25 rem_buf=24)
29.04.2025 15:31:53.372 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=1 send=30 rem_buf=29)
29.04.2025 15:31:53.483 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=1 send=35 rem_buf=34)
29.04.2025 15:31:53.595 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=1 send=40 rem_buf=39)
29.04.2025 15:31:53.706 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=1 send=45 rem_buf=44)
29.04.2025 15:31:53.817 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=1 send=50 rem_buf=49)
29.04.2025 15:31:53.928 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=1 send=55 rem_buf=54)
29.04.2025 15:31:53.948 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 08 (rem_ack=8 send=60 rem_buf=52)
29.04.2025 15:31:54.040 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=8 send=60 rem_buf=52)
29.04.2025 15:31:54.151 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 02 (rem_ack=8 send=65 rem_buf=57)
29.04.2025 15:31:54.262 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 08 0A 15 0A 15 (rem_ack=8 send=70 rem_buf=62)
29.04.2025 15:31:54.374 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=8 send=75 rem_buf=67)
29.04.2025 15:31:54.485 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=8 send=80 rem_buf=72)
29.04.2025 15:31:54.596 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=8 send=85 rem_buf=77)
29.04.2025 15:31:54.707 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=8 send=90 rem_buf=82)
29.04.2025 15:31:54.819 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=8 send=95 rem_buf=87)
29.04.2025 15:31:54.930 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=8 send=100 rem_buf=92)
29.04.2025 15:31:54.962 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 0E (rem_ack=14 send=105 rem_buf=91)
29.04.2025 15:31:55.041 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=14 send=105 rem_buf=91)
29.04.2025 15:31:55.151 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 15 0A 15 0A (rem_ack=14 send=110 rem_buf=96)
29.04.2025 15:31:55.957 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 15 (rem_ack=21 send=114 rem_buf=93)
29.04.2025 15:31:56.037 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=21 send=114 rem_buf=93)
29.04.2025 15:31:56.148 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=21 send=119 rem_buf=98)
29.04.2025 15:31:56.958 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 1C (rem_ack=28 send=121 rem_buf=93)
29.04.2025 15:31:57.038 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=28 send=121 rem_buf=93)
29.04.2025 15:31:57.150 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=28 send=126 rem_buf=98)
29.04.2025 15:31:57.958 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 22 (rem_ack=34 send=128 rem_buf=94)
29.04.2025 15:31:58.037 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=34 send=128 rem_buf=94)
29.04.2025 15:31:58.149 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=34 send=133 rem_buf=99)
29.04.2025 15:31:58.959 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 29 (rem_ack=41 send=134 rem_buf=93)
29.04.2025 15:31:59.039 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=41 send=134 rem_buf=93)
29.04.2025 15:31:59.150 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 02 08 (rem_ack=41 send=139 rem_buf=98)
29.04.2025 15:31:59.959 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 30 (rem_ack=48 send=141 rem_buf=93)
29.04.2025 15:32:00.038 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=48 send=141 rem_buf=93)
29.04.2025 15:32:00.150 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=48 send=146 rem_buf=98)
29.04.2025 15:32:00.984 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 37 (rem_ack=55 send=148 rem_buf=93)
29.04.2025 15:32:01.041 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=55 send=148 rem_buf=93)
29.04.2025 15:32:01.151 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=55 send=153 rem_buf=98)
29.04.2025 15:32:01.979 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 3D (rem_ack=61 send=155 rem_buf=94)
29.04.2025 15:32:02.040 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=61 send=155 rem_buf=94)
29.04.2025 15:32:02.152 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 15 (rem_ack=61 send=160 rem_buf=99)
29.04.2025 15:32:03.050 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 44 (rem_ack=68 send=161 rem_buf=93)
29.04.2025 15:32:03.127 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=68 send=161 rem_buf=93)
29.04.2025 15:32:03.236 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=68 send=166 rem_buf=98)
29.04.2025 15:32:04.028 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 4B (rem_ack=75 send=168 rem_buf=93)
29.04.2025 15:32:04.110 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=75 send=168 rem_buf=93)
29.04.2025 15:32:04.222 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=75 send=173 rem_buf=98)
29.04.2025 15:32:05.047 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 52 (rem_ack=82 send=175 rem_buf=93)
29.04.2025 15:32:05.110 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=82 send=175 rem_buf=93)
29.04.2025 15:32:05.222 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=82 send=180 rem_buf=98)
29.04.2025 15:32:06.062 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 58 (rem_ack=88 send=182 rem_buf=94)
29.04.2025 15:32:06.110 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=88 send=182 rem_buf=94)
29.04.2025 15:32:06.220 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=88 send=187 rem_buf=99)
29.04.2025 15:32:07.063 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 5F (rem_ack=95 send=188 rem_buf=93)
29.04.2025 15:32:07.111 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=95 send=188 rem_buf=93)
29.04.2025 15:32:07.222 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=95 send=193 rem_buf=98)
29.04.2025 15:32:08.083 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 66 (rem_ack=102 send=195 rem_buf=93)
29.04.2025 15:32:08.116 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=102 send=195 rem_buf=93)
29.04.2025 15:32:08.227 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=102 send=200 rem_buf=98)
29.04.2025 15:32:09.104 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 6D (rem_ack=109 send=202 rem_buf=93)
29.04.2025 15:32:09.117 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=109 send=202 rem_buf=93)
29.04.2025 15:32:09.229 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=109 send=207 rem_buf=98)
29.04.2025 15:32:10.115 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 74 (rem_ack=116 send=209 rem_buf=93)
29.04.2025 15:32:10.226 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 02 08 0A 15 0A (rem_ack=116 send=209 rem_buf=93)
29.04.2025 15:32:10.337 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=116 send=214 rem_buf=98)
29.04.2025 15:32:11.115 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 7A (rem_ack=122 send=216 rem_buf=94)
29.04.2025 15:32:11.227 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=122 send=216 rem_buf=94)
29.04.2025 15:32:11.338 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=122 send=221 rem_buf=99)
29.04.2025 15:32:12.130 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 81 (rem_ack=129 send=222 rem_buf=93)
29.04.2025 15:32:12.226 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=129 send=222 rem_buf=93)
29.04.2025 15:32:12.337 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=129 send=227 rem_buf=98)
29.04.2025 15:32:13.148 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 88 (rem_ack=136 send=229 rem_buf=93)
29.04.2025 15:32:13.228 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=136 send=229 rem_buf=93)
29.04.2025 15:32:13.335 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=136 send=234 rem_buf=98)
29.04.2025 15:32:14.147 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 8E (rem_ack=142 send=236 rem_buf=94)
29.04.2025 15:32:14.205 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=142 send=236 rem_buf=94)
29.04.2025 15:32:14.314 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=142 send=241 rem_buf=99)
29.04.2025 15:32:15.168 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 95 (rem_ack=149 send=242 rem_buf=93)
29.04.2025 15:32:15.200 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=149 send=242 rem_buf=93)
29.04.2025 15:32:15.311 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=149 send=247 rem_buf=98)
29.04.2025 15:32:16.154 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 9C (rem_ack=156 send=249 rem_buf=93)
29.04.2025 15:32:16.202 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=156 send=249 rem_buf=93)
29.04.2025 15:32:16.313 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=156 send=254 rem_buf=98)
29.04.2025 15:32:17.158 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 A2 (rem_ack=162 send=0 rem_buf=94)
29.04.2025 15:32:17.205 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=162 send=0 rem_buf=94)
29.04.2025 15:32:17.317 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=162 send=5 rem_buf=99)
29.04.2025 15:32:18.178 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 A9 (rem_ack=169 send=6 rem_buf=93)
29.04.2025 15:32:18.210 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=169 send=6 rem_buf=93)
29.04.2025 15:32:18.322 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=169 send=11 rem_buf=98)
29.04.2025 15:32:19.181 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 B0 (rem_ack=176 send=13 rem_buf=93)
29.04.2025 15:32:19.212 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=176 send=13 rem_buf=93)
29.04.2025 15:32:19.324 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=176 send=18 rem_buf=98)
29.04.2025 15:32:20.200 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 B7 (rem_ack=183 send=20 rem_buf=93)
29.04.2025 15:32:20.216 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 02 08 (rem_ack=183 send=20 rem_buf=93)
29.04.2025 15:32:20.328 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=183 send=25 rem_buf=98)
29.04.2025 15:32:21.201 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 BD (rem_ack=189 send=27 rem_buf=94)
29.04.2025 15:32:21.217 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=189 send=27 rem_buf=94)
29.04.2025 15:32:21.328 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 15 (rem_ack=189 send=32 rem_buf=99)
29.04.2025 15:32:22.220 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 C4 (rem_ack=196 send=33 rem_buf=93)
29.04.2025 15:32:22.330 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=196 send=33 rem_buf=93)
29.04.2025 15:32:22.442 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=196 send=38 rem_buf=98)
29.04.2025 15:32:23.225 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 CB (rem_ack=203 send=40 rem_buf=93)
29.04.2025 15:32:23.334 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=203 send=40 rem_buf=93)
29.04.2025 15:32:23.445 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=203 send=45 rem_buf=98)
29.04.2025 15:32:24.225 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 D2 (rem_ack=210 send=47 rem_buf=93)
29.04.2025 15:32:24.335 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=210 send=47 rem_buf=93)
29.04.2025 15:32:24.445 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=210 send=52 rem_buf=98)
29.04.2025 15:32:25.248 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 D8 (rem_ack=216 send=54 rem_buf=94)
29.04.2025 15:32:25.314 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=216 send=54 rem_buf=94)
29.04.2025 15:32:25.424 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=216 send=59 rem_buf=99)
29.04.2025 15:32:26.243 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 DF (rem_ack=223 send=60 rem_buf=93)
29.04.2025 15:32:26.307 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=223 send=60 rem_buf=93)
29.04.2025 15:32:26.418 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=223 send=65 rem_buf=98)
29.04.2025 15:32:27.247 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 E6 (rem_ack=230 send=67 rem_buf=93)
29.04.2025 15:32:27.308 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=230 send=67 rem_buf=93)
29.04.2025 15:32:27.420 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=230 send=72 rem_buf=98)
29.04.2025 15:32:28.248 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 EC (rem_ack=236 send=74 rem_buf=94)
29.04.2025 15:32:28.312 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=236 send=74 rem_buf=94)
29.04.2025 15:32:28.423 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=236 send=79 rem_buf=99)
29.04.2025 15:32:29.245 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 F3 (rem_ack=243 send=80 rem_buf=93)
29.04.2025 15:32:29.307 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=243 send=80 rem_buf=93)
29.04.2025 15:32:29.418 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=243 send=85 rem_buf=98)
29.04.2025 15:32:30.246 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 FA (rem_ack=250 send=87 rem_buf=93)
29.04.2025 15:32:30.310 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=250 send=87 rem_buf=93)
29.04.2025 15:32:30.421 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 02 (rem_ack=250 send=92 rem_buf=98)
29.04.2025 15:32:31.247 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 00 (rem_ack=0 send=94 rem_buf=94)
29.04.2025 15:32:31.311 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 08 0A 15 0A 15 (rem_ack=0 send=94 rem_buf=94)
29.04.2025 15:32:31.421 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=0 send=99 rem_buf=99)
29.04.2025 15:32:32.247 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 07 (rem_ack=7 send=100 rem_buf=93)
29.04.2025 15:32:32.311 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=7 send=100 rem_buf=93)
29.04.2025 15:32:32.422 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=7 send=105 rem_buf=98)
29.04.2025 15:32:33.234 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 0E (rem_ack=14 send=107 rem_buf=93)
29.04.2025 15:32:33.313 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=14 send=107 rem_buf=93)
29.04.2025 15:32:33.424 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=14 send=112 rem_buf=98)
29.04.2025 15:32:34.253 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 14 (rem_ack=20 send=114 rem_buf=94)
29.04.2025 15:32:34.318 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=20 send=114 rem_buf=94)
29.04.2025 15:32:34.429 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=20 send=119 rem_buf=99)
29.04.2025 15:32:35.323 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 1B (rem_ack=27 send=120 rem_buf=93)
29.04.2025 15:32:35.432 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=27 send=120 rem_buf=93)
29.04.2025 15:32:35.540 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=27 send=125 rem_buf=98)
29.04.2025 15:32:36.266 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 22 (rem_ack=34 send=127 rem_buf=93)
29.04.2025 15:32:36.303 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=34 send=127 rem_buf=93)
29.04.2025 15:32:36.411 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=34 send=132 rem_buf=98)
29.04.2025 15:32:37.281 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 29 (rem_ack=41 send=134 rem_buf=93)
29.04.2025 15:32:37.393 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=41 send=134 rem_buf=93)
29.04.2025 15:32:37.505 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=41 send=139 rem_buf=98)
29.04.2025 15:32:38.276 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 2F (rem_ack=47 send=141 rem_buf=94)
29.04.2025 15:32:38.388 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=47 send=141 rem_buf=94)
29.04.2025 15:32:38.499 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 15 (rem_ack=47 send=146 rem_buf=99)
29.04.2025 15:32:39.294 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 36 (rem_ack=54 send=147 rem_buf=93)
29.04.2025 15:32:39.390 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=54 send=147 rem_buf=93)
29.04.2025 15:32:39.501 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=54 send=152 rem_buf=98)
29.04.2025 15:32:40.323 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 3D (rem_ack=61 send=154 rem_buf=93)
29.04.2025 15:32:40.391 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=61 send=154 rem_buf=93)
29.04.2025 15:32:40.503 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=61 send=159 rem_buf=98)
29.04.2025 15:32:41.347 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 44 (rem_ack=68 send=161 rem_buf=93)
29.04.2025 15:32:41.395 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 02 08 0A (rem_ack=68 send=161 rem_buf=93)
29.04.2025 15:32:41.505 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=68 send=166 rem_buf=98)
29.04.2025 15:32:42.363 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 4A (rem_ack=74 send=168 rem_buf=94)
29.04.2025 15:32:42.395 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=74 send=168 rem_buf=94)
29.04.2025 15:32:42.506 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=74 send=173 rem_buf=99)
29.04.2025 15:32:43.385 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 51 (rem_ack=81 send=174 rem_buf=93)
29.04.2025 15:32:43.393 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=81 send=174 rem_buf=93)
29.04.2025 15:32:43.504 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=81 send=179 rem_buf=98)
29.04.2025 15:32:44.385 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 58 (rem_ack=88 send=181 rem_buf=93)
29.04.2025 15:32:44.389 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=88 send=181 rem_buf=93)
29.04.2025 15:32:44.500 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=88 send=186 rem_buf=98)
29.04.2025 15:32:45.385 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 5F (rem_ack=95 send=188 rem_buf=93)
29.04.2025 15:32:45.390 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=95 send=188 rem_buf=93)
29.04.2025 15:32:45.501 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=95 send=193 rem_buf=98)
29.04.2025 15:32:46.407 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 65 (rem_ack=101 send=195 rem_buf=94)
29.04.2025 15:32:46.501 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=101 send=195 rem_buf=94)
29.04.2025 15:32:46.609 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 15 (rem_ack=101 send=200 rem_buf=99)
29.04.2025 15:32:47.434 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 6C (rem_ack=108 send=201 rem_buf=93)
29.04.2025 15:32:47.477 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=108 send=201 rem_buf=93)
29.04.2025 15:32:47.695 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 04 15 0A 15 0A (rem_ack=108 send=206 rem_buf=98)
29.04.2025 15:32:48.425 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 73 (rem_ack=115 send=210 rem_buf=95)
29.04.2025 15:32:48.473 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=115 send=210 rem_buf=95)
29.04.2025 15:32:49.426 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 7A (rem_ack=122 send=215 rem_buf=93)
29.04.2025 15:32:49.474 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=122 send=215 rem_buf=93)
29.04.2025 15:32:49.585 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=122 send=220 rem_buf=98)
29.04.2025 15:32:50.448 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 80 (rem_ack=128 send=222 rem_buf=94)
29.04.2025 15:32:50.475 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=128 send=222 rem_buf=94)
29.04.2025 15:32:50.586 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=128 send=227 rem_buf=99)
29.04.2025 15:32:51.447 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 87 (rem_ack=135 send=228 rem_buf=93)
29.04.2025 15:32:51.476 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=135 send=228 rem_buf=93)
29.04.2025 15:32:51.588 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 02 08 (rem_ack=135 send=233 rem_buf=98)
29.04.2025 15:32:52.448 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 8E (rem_ack=142 send=235 rem_buf=93)
29.04.2025 15:32:52.477 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=142 send=235 rem_buf=93)
29.04.2025 15:32:52.589 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=142 send=240 rem_buf=98)
29.04.2025 15:32:53.447 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 94 (rem_ack=148 send=242 rem_buf=94)
29.04.2025 15:32:53.479 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=148 send=242 rem_buf=94)
29.04.2025 15:32:53.589 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=148 send=247 rem_buf=99)
29.04.2025 15:32:54.447 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 9B (rem_ack=155 send=248 rem_buf=93)
29.04.2025 15:32:54.479 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=155 send=248 rem_buf=93)
29.04.2025 15:32:54.590 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=155 send=253 rem_buf=98)
29.04.2025 15:32:55.450 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 A2 (rem_ack=162 send=255 rem_buf=93)
29.04.2025 15:32:55.482 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=162 send=255 rem_buf=93)
29.04.2025 15:32:55.594 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=162 send=4 rem_buf=98)
29.04.2025 15:32:56.448 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 A8 (rem_ack=168 send=6 rem_buf=94)
29.04.2025 15:32:56.487 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=168 send=6 rem_buf=94)
29.04.2025 15:32:56.599 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=168 send=11 rem_buf=99)
29.04.2025 15:32:57.447 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 AF (rem_ack=175 send=12 rem_buf=93)
29.04.2025 15:32:57.490 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=175 send=12 rem_buf=93)
29.04.2025 15:32:57.599 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=175 send=17 rem_buf=98)
29.04.2025 15:32:58.450 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 B6 (rem_ack=182 send=19 rem_buf=93)
29.04.2025 15:32:58.473 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=182 send=19 rem_buf=93)
29.04.2025 15:32:58.582 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=182 send=24 rem_buf=98)
29.04.2025 15:32:59.463 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 BC (rem_ack=188 send=26 rem_buf=94)
29.04.2025 15:32:59.574 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=188 send=26 rem_buf=94)
29.04.2025 15:32:59.685 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=188 send=31 rem_buf=99)
29.04.2025 15:33:00.479 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 C3 (rem_ack=195 send=32 rem_buf=93)
29.04.2025 15:33:00.574 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=195 send=32 rem_buf=93)
29.04.2025 15:33:00.685 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=195 send=37 rem_buf=98)
29.04.2025 15:33:01.479 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 CA (rem_ack=202 send=39 rem_buf=93)
29.04.2025 15:33:01.573 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=202 send=39 rem_buf=93)
29.04.2025 15:33:01.682 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=202 send=44 rem_buf=98)
29.04.2025 15:33:02.511 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 D1 (rem_ack=209 send=46 rem_buf=93)
29.04.2025 15:33:02.575 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 02 08 0A 15 (rem_ack=209 send=46 rem_buf=93)
29.04.2025 15:33:02.685 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=209 send=51 rem_buf=98)
29.04.2025 15:33:03.510 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 D7 (rem_ack=215 send=53 rem_buf=94)
29.04.2025 15:33:03.573 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=215 send=53 rem_buf=94)
29.04.2025 15:33:03.683 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 15 (rem_ack=215 send=58 rem_buf=99)
29.04.2025 15:33:04.510 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 DE (rem_ack=222 send=59 rem_buf=93)
29.04.2025 15:33:04.574 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=222 send=59 rem_buf=93)
29.04.2025 15:33:04.685 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=222 send=64 rem_buf=98)
29.04.2025 15:33:05.526 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 E5 (rem_ack=229 send=66 rem_buf=93)
29.04.2025 15:33:05.572 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=229 send=66 rem_buf=93)
29.04.2025 15:33:05.682 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=229 send=71 rem_buf=98)
29.04.2025 15:33:06.542 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 EC (rem_ack=236 send=73 rem_buf=93)
29.04.2025 15:33:06.573 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=236 send=73 rem_buf=93)
29.04.2025 15:33:06.684 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=236 send=78 rem_buf=98)
29.04.2025 15:33:07.575 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 F2 (rem_ack=242 send=80 rem_buf=94)
29.04.2025 15:33:07.686 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=242 send=80 rem_buf=94)
29.04.2025 15:33:07.798 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=242 send=85 rem_buf=99)
29.04.2025 15:33:08.597 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 F9 (rem_ack=249 send=86 rem_buf=93)
29.04.2025 15:33:08.687 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=249 send=86 rem_buf=93)
29.04.2025 15:33:08.797 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=249 send=91 rem_buf=98)
29.04.2025 15:33:09.600 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 00 (rem_ack=0 send=93 rem_buf=93)
29.04.2025 15:33:09.666 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=0 send=93 rem_buf=93)
29.04.2025 15:33:09.776 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=0 send=98 rem_buf=98)
29.04.2025 15:33:10.604 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 07 (rem_ack=7 send=100 rem_buf=93)
29.04.2025 15:33:10.651 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=7 send=100 rem_buf=93)
29.04.2025 15:33:10.761 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=7 send=105 rem_buf=98)
29.04.2025 15:33:11.605 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 0D (rem_ack=13 send=107 rem_buf=94)
29.04.2025 15:33:11.653 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=13 send=107 rem_buf=94)
29.04.2025 15:33:11.764 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 15 (rem_ack=13 send=112 rem_buf=99)
29.04.2025 15:33:12.607 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 14 (rem_ack=20 send=113 rem_buf=93)
29.04.2025 15:33:12.656 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 02 (rem_ack=20 send=113 rem_buf=93)
29.04.2025 15:33:12.767 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 08 0A (rem_ack=20 send=118 rem_buf=98)
29.04.2025 15:33:13.626 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 1B (rem_ack=27 send=120 rem_buf=93)
29.04.2025 15:33:13.658 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=27 send=120 rem_buf=93)
29.04.2025 15:33:13.769 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=27 send=125 rem_buf=98)
29.04.2025 15:33:14.640 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 22 (rem_ack=34 send=127 rem_buf=93)
29.04.2025 15:33:14.656 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=34 send=127 rem_buf=93)
29.04.2025 15:33:14.767 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=34 send=132 rem_buf=98)
29.04.2025 15:33:15.640 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 28 (rem_ack=40 send=134 rem_buf=94)
29.04.2025 15:33:15.656 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=40 send=134 rem_buf=94)
29.04.2025 15:33:15.767 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 0A (rem_ack=40 send=139 rem_buf=99)
29.04.2025 15:33:16.672 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 2F (rem_ack=47 send=140 rem_buf=93)
29.04.2025 15:33:16.768 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=47 send=140 rem_buf=93)
29.04.2025 15:33:16.879 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=47 send=145 rem_buf=98)
29.04.2025 15:33:17.669 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 36 (rem_ack=54 send=147 rem_buf=93)
29.04.2025 15:33:17.764 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=54 send=147 rem_buf=93)
29.04.2025 15:33:17.875 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=54 send=152 rem_buf=98)
29.04.2025 15:33:18.685 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 3D (rem_ack=61 send=154 rem_buf=93)
29.04.2025 15:33:18.764 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=61 send=154 rem_buf=93)
29.04.2025 15:33:18.875 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=61 send=159 rem_buf=98)
29.04.2025 15:33:19.686 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 43 (rem_ack=67 send=161 rem_buf=94)
29.04.2025 15:33:19.779 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=67 send=161 rem_buf=94)
29.04.2025 15:33:19.888 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 15 (rem_ack=67 send=166 rem_buf=99)
29.04.2025 15:33:20.693 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 4A (rem_ack=74 send=167 rem_buf=93)
29.04.2025 15:33:20.759 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=74 send=167 rem_buf=93)
29.04.2025 15:33:20.869 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 0A (rem_ack=74 send=172 rem_buf=98)
29.04.2025 15:33:21.706 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 51 (rem_ack=81 send=174 rem_buf=93)
29.04.2025 15:33:21.753 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 15 0A 15 0A 15 (rem_ack=81 send=174 rem_buf=93)
29.04.2025 15:33:21.865 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 0A 15 (rem_ack=81 send=179 rem_buf=98)
29.04.2025 15:33:22.729 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 58 (rem_ack=88 send=181 rem_buf=93)
29.04.2025 15:33:22.753 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 05 0A 15 0A 15 0A (rem_ack=88 send=181 rem_buf=93)
29.04.2025 15:33:22.865 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 02 15 02 (rem_ack=88 send=186 rem_buf=98)
29.04.2025 15:33:23.729 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 5E (rem_ack=94 send=188 rem_buf=94)
29.04.2025 15:33:23.760 Debug [ItelexProtocol] [SendCmd] Send packet BaudotData 02 01 08 (rem_ack=94 send=188 rem_buf=94)
29.04.2025 15:33:24.729 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 65 (rem_ack=101 send=189 rem_buf=88)
29.04.2025 15:33:25.748 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 6C (rem_ack=108 send=189 rem_buf=81)
29.04.2025 15:33:26.760 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 72 (rem_ack=114 send=189 rem_buf=75)
29.04.2025 15:33:27.792 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 79 (rem_ack=121 send=189 rem_buf=68)
29.04.2025 15:33:28.800 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 80 (rem_ack=128 send=189 rem_buf=61)
29.04.2025 15:33:29.831 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 87 (rem_ack=135 send=189 rem_buf=54)
29.04.2025 15:33:30.842 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 8E (rem_ack=142 send=189 rem_buf=47)
29.04.2025 15:33:31.872 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 94 (rem_ack=148 send=189 rem_buf=41)
29.04.2025 15:33:32.888 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 9B (rem_ack=155 send=189 rem_buf=34)
29.04.2025 15:33:33.885 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 A2 (rem_ack=162 send=189 rem_buf=27)
29.04.2025 15:33:34.892 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 A9 (rem_ack=169 send=189 rem_buf=20)
29.04.2025 15:33:35.902 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 AF (rem_ack=175 send=189 rem_buf=14)
29.04.2025 15:33:36.896 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 B6 (rem_ack=182 send=189 rem_buf=7)
29.04.2025 15:33:37.922 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 BD (rem_ack=189 send=189 rem_buf=0)
29.04.2025 15:33:38.966 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 BD (rem_ack=189 send=189 rem_buf=0)
29.04.2025 15:33:39.962 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 BD (rem_ack=189 send=189 rem_buf=0)
29.04.2025 15:33:40.987 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 BD (rem_ack=189 send=189 rem_buf=0)
29.04.2025 15:33:41.981 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 BD (rem_ack=189 send=189 rem_buf=0)
29.04.2025 15:33:42.991 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 BD (rem_ack=189 send=189 rem_buf=0)
29.04.2025 15:33:43.979 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 BD (rem_ack=189 send=189 rem_buf=0)
29.04.2025 15:33:44.986 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 BD (rem_ack=189 send=189 rem_buf=0)
29.04.2025 15:33:45.982 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 BD (rem_ack=189 send=189 rem_buf=0)
29.04.2025 15:33:46.979 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 BD (rem_ack=189 send=189 rem_buf=0)
29.04.2025 15:33:48.010 Debug [ItelexProtocol] [DecodePacket] recv ack cmd 06 01 BD (rem_ack=189 send=189 rem_buf=0)
Also ich sende jede Sekunde ein ACK Paket und soweit ich weis die iTelex Hardware mindestens alle 3sec eins. Ich kann ja mal testen was passiert wenn ich erst nach 3sec ein ACK sende

Man kann auch eine Zeitbasis bilden die durch die Baudrate definiert ist -> Takt bei 50 Baud 150ms. Damit kann man die Präsentationszeit der Zeichen berechnen -> also wann ein Zeichen ausgegeben werden muss.