Repetier-Host communication problem: multiple waiting commands
Hello, i've a discontinuous communication on RH in Linux Mint 21.
When connected to my printer the software seems waiting OK response back from Marlin so the manual control stats bar tab shows a number of command waiting to be executed and little to no communication logs scrolling down.
If i send some manual ok waiting commands are sended however there is an inconsistent communication keep waiting randomly.
Scanning for serial port params i've detected an IGNBRK flag configured by default by RH on connection start.
My solution is removing that flag (stty -F <port> -ignbrk) then communication works as intended.
Comments
If you are not using 115200 baud we also call SetBaudrate where we have
ios.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON);
so should be removed from this as well.
What baud rate were you using and are you sure it was set?