-
Notifications
You must be signed in to change notification settings - Fork 369
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Serial connection timing out #10
Comments
Did it actually wait for 5 seconds before returning ErrTimeout? if set timeout to 0 (infinity), do you still get the error? |
It does wait. If I set the timeout to 0 it hangs until I stop it. |
To be honest, I have never tried running this on RPi but I'm willing to fix this issue so I'd be grateful if you can help me this:
|
I'd be happy to help you fix it. I unfortunately am not physically at the location where the RPi and solar charger are, so I won't be able to plug my computer into either of them to verify operation. Here is the output with the C program's debugging turned on:
I installed kermit, but I've never used it before and I'm not sure how to send that binary data to it. I ran: ckermit -l /dev/ttyUSB0
set carrier-watch off
set speed 9600
set stop-bits 2
set parity none
connect but from there it didn't seem like anything I was typing was going through. If you can point me in the right direction I would appreciate it. Thanks for helping out with this. |
I will also add that, although I am not in the same location as the RPi/solar setup mentioned above, I do have a raspberry pi, arduino, and USB FTDI chip where I am now. I could probably hack something together with that if necessary. |
So the frame data is similar
I'd like to see if it can read any data at all. |
With that commented out I get:
|
Is there a test I could do with the serial package and the raspberry pi and arduino I have on hand to see if there's an issue at the serial communications layer? |
I have got a RPi2, will install ArchLinux and test with my usb-serial port this weekend. |
Great, thank you! |
Hi @brianfoshee It seems the problem has been fixed in
Let me know if the fix does (not) work for you. Thank you. |
It is working now! Thank you very much @nqv, I appreciate it! |
Align log messages
I am trying to port some existing C code over to Go using this package but keep getting a
serial: timeout
error on reading registers. I've tried with bothReadHoldingRegisters
andReadInputRegisters
, and with timeouts up to 60s.I have a solar charge controller with RS232 MODBUS port (spec here) connected to a Raspberry Pi running arch linux, through a USB to RS232 converter. I'm on go version
go1.6 linux/arm
.The C program is here, and essentially does:
(new rtu call here, read registers call here. Uses libmodbus.)
However, when I perform the same setup with this package I see the timeout:
Output:
Is there any debugging info I can provide to help track down the culprit?
The text was updated successfully, but these errors were encountered: