-
Notifications
You must be signed in to change notification settings - Fork 167
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
Timing issues with EV3 UART sensors. #24
Comments
The hard fix would be to make receiving the UART data in the BrickPi happen asynchronously and cache the most recent value. Then the EV3_Update function could always just return the most recent value without having to wait for a send and receive to/from the UART sensor. |
In file BrickPiEV3.cpp line 176, we check that at least one byte is available before reading it line 178. Could it be the reason of all these error values ? |
What happens is that no data is available in line 176, so It been so long since I looked at this, I don't remember if I was also seeing a |
In your first comment of this issue you said "Usually, the value is -2, and sometimes -4" (top of this page). I definitively suspect this piece of code to be the source of the read errors with EV3 sensors. |
I've just stumbled across this problem. Is there any intention in @DexterInd to fix this? The device is being sold as something that "works with all NXT and EV3 sensors and motors." |
@kortschak it's something we're working on. Yes, we have intention to fix it. |
@DexterInd, what is the time-frame for this? |
I've notice that the EV3 UART sensors return an error value quite often instead of the sensor value. Usually, the value is -2, and sometimes -4. I can see these are error values returned by the EV3_Update function. I stuck my logic analyzer on it and immediately saw the problem.
Normally, the timing works like this...
However, quite often, this happens...
It seems that this happens most often when data value is changing rapidly. A couple of easy fixes would be to A) wait a bit longer for the UART sensor to respond before sending an error or B) send the previous value received.
I've worked around this for now by filtering out the error values, but it makes the sensor unresponsive for noticeable periods of time, which does not make for good robot building. Also, some of the sensors can return negative values in certain modes, so I also have to filter out possibly good data in those modes, which is not nice.
The text was updated successfully, but these errors were encountered: