Thank you for your response!
Ive read about the queue report in Tinys wiki as a good solution.
OK on the other hand if the XON/XOFF control works proper I will use it.
But I have the feeling that the String produce an overflow at Tinys buffer. If I send small files 100 Bytes no Problem but every file more than 150 bytes make problems sometime. I am also able to test with a serialport program to check both side of the communication (RX/TX). I send all the G-Code as String…
Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button7.Click
Dim Senden As String = RichTextBox1.Text
SerialPort1.Write(Senden & vbCrLf) ‘Zeichensatz plus nachfolgendes CrLf zur Datenübernahme
This could be the problem…
Regards
Kai