-
Notifications
You must be signed in to change notification settings - Fork 61
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
Issue while reading SPI data #405
Comments
I ordered this chip to see if I can duplicate your error. A couple things I will/would try with the chip.
I believe the pigpio spi always send 8 bits, have you tried as suggested ?
If you solve this please update the post, otherwise when I have a chip I will do some testing myself. |
Yes I always send 3 bytes and as far as I can see there no other option. I altered baud rate but I couldn't see any difference. I used pigpioj-java which is based on netty and it works without any problems. When I looked into the library there is wait for response implemented. This approach I applied into your code (just for testing): com.pi4j.library.pigpio.PiGpioPacket:
In my tests the change resulted in the data being able to be read. Assuming this error is not caused by the MCP3208 but in the availability of the data from the socket's InputStream. In the PIGPIO documentation I couldn't find that an end character is used in communication, because I would use that to detect the end of the data together with a read timeout. Do you know if there is end character? |
At the moment I am using the version 2.7.0 of your great library with raspberry pi and pigio.
My implementation reads the data from MCP3208:
If it was successful the logging looks like (three bytes sent, three bytes received):
But something something different happens (first transfer return 0 bytes, second transfer return 6 bytes):
At the moment I don't see any possibility to handle it in my implementation because I expect three bytes and the readBuffer.postion is three as well as spi.transfer returns three.
If I look into com.pi4j.library.pigpio.impl.PiGpioSocketImpl.spiXfer I wonder if
int actual = rx.result();
is really correct or if it should beint actual = rx.dataLength();
.Is the there a relation to #16?
What do you think is the best solution to get this issue solved?
The text was updated successfully, but these errors were encountered: