Beachten sollte man auch die Datenflusssteuerung:
Hardware (TxD, RxD, GND, RTS und CTS)
Software Xon/Xoff (Xon=0x19/Xoff=0X18)
kann man bei 'nrcomm' mit der Eigenschaft 'StreamProtokol' angeben.
als Bps.(Baud) würde ich 512,1200 oder 2400 probieren.
einige Links zu Info
https://ipc2u.de/artikel/wissenswert...22-und-rs-485/
https://de.wikipedia.org/wiki/Steuerzeichen
https://eterlogic.com/products.vspe.html
ein eifaches Programm
Delphi-Quellcode:
for i:=0 to memo1.Lines.count-1 do
begin
nrComm1.SendString(Memo1.Lines[i]);
nrComm1.SendChar(#13);
nrComm1.SendChar(#10);
end;
nrComm1.SendChar(#4);