-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
RSUSB backend fails to set options #6952
Comments
Apologies for the delay in responding. I was going through your case very carefully, looking at it from many different angles. Given that you stated that operations can fail and then succeed, a first action to try could be to create a short sleep period inbetween tries. This would give librealsense more opportunity to pause and catch its breath before re-trying. I see that you are already using sleep in your minimal script, but it was not clear whether it was sleeping after each try or only after more than 5 tries had been attempted. If it is per try, you could also see whether setting a longer sleep period makes a positive difference. It may also be worth simplifying the script by removing some of the steps temporarily (e.g taking out the Laser Power check) and see if stability improves. This trial and error process of taking a section out, doing a test run and putting it back if performance does not improve, and then repeating the process for a different code block, may indicate whether a particular block of code is introducing instability. |
@SirDifferential , I've looked up the mentioned code and there are definitely things you can improve:
if (sensor->is<roi_sensor>())
{
sensor->as<roi_sensor>().set_region_of_interest(<TBD>);
}
as when you reach that code segment the AE state is unverified.
When iterating over all the sensors available you have use use heuristics to differentiate between sensors as the controls that you've selected do not apply to all sensors - set/get if (sensor.supports(ABC))
{
sensor.set_option(ABC);
....
}
|
Thank you for your replies. I simplified the test program to do less things. Now I load my current settings from a JSON to reduce the potential for errors.
I've adjusted this in.
Ah - I wasn't aware of this. I've adjusted the code to do this.
Good point - the error about the option not being supported was likely for the RGB sensor.
I set up a new Ubuntu 18.04 4.15.0-37-generic Upboard for testing today, with the kernel patches and v4l backend. I first applied your recommended changes and repeated my test on Debian 10 / Raspbian10 without the kernel patches on RSUSB. The results: Debian 10 with RSUSB
Raspbian 10 with RSUSB
Ubuntu 18.04 4.15.0-37-generic with kernel patches and V4L backend
All requests completed without error and the modes were toggled properly. As such, it looks like this is an issue with RSUSB. |
And as per Marty's recommendation to add a few sleeps and retry the requests, I could try adding that in. At some point I noticed that with RSUSB backend some set/get requests don't always succeed on their first try, but if you repeat them a few times with sleeps between, they sometimes do succeed. This is far from ideal, but it's worth a try, although I'd like to understand better what causes in this sort of behavior. |
Hi @SirDifferential Do you require further assistance with this case, please? Thanks! |
Yes please. Even with the fixes and suggestions, the options fail to toggle. Especially the I'm going to be on a vacation for the next 3 weeks, but will look back at this when I get back in the office. |
In a recent discussion about how events / callbacks can be missed when using RSUSB, advice was provided about changing the timing of timeout events: |
Adding a note to keep this case open a further period whilst @SirDifferential is on vacation. |
Hi @SirDifferential Do you have an update on this case, please? Thanks! |
Sorry about the delay. Things were pretty busy here for a while. I tried applying pull request 7085 and played around with various As such, it looks like this is still a valid issue, and I'd appreciate hearing on what could cause it / how we could get past it. Considering Realsense Viewer seems to be able to control these values when built with RSUSB, I'm guessing there is some way to send these requests in without them failing. However, in the Realsense Viewer log, there are errors being printed when I toggle auto exposure or specify its region of interest, although the live feed clearly shows auto exposure toggling and adjusting correctly.
EDIT: To sum up what my code does:
|
Thanks very much for the detailed feedback @SirDifferential I re-read your case from the start to refresh my memory. The main thing that stood out was that you tested successfully with kernel patches and V4L backend and didn't get the problems that you do with RSUSB. Yet I did not see any reasons arguing against use of the kernel-patching approach. If kernel-patching works fine for you, is there a reason why the RSUSB method is preferred please? |
We use a Raspberry Pi 4 and the kernel patches aren't currently available for kernel |
Would switching to Ubuntu 18.04 LTS on Pi 4 instead of using Raspbian be an option for your project in order to make kernel patching more feasible? https://maker.pro/raspberry-pi/projects/install-ubuntu-18044-lts-on-your-raspberry-pi-board |
We've tried running Ubuntu 18.04, and currently do with our old Upboard based model, but on raspberry it had other issues, namely with the communications to the hardware via |
Tagging a reminder to @ev-mp to kindly take a further look at this case if possible. Thanks! |
Sorry that you haven't received responses @SirDifferential - can you confirm that the problem in this case remains an ongoing issue? |
Thank you for your attention on this issue. I tried updating to the new SDK version and applied the latest development firmware, but it didn't seem to change anything. |
I have re-reviewed the entire case from the beginning but cannot see many other options to try. The need to use Pi and the Raspbian OS particularly are restricting factors. I know that you earlier ruled out compiling from source with kernel patching instead of using RSUSB. The dependency on Raspbian instead of Ubuntu may also make DKMS package distribution unsuitable. Before the RSUSB method was introduced, there was another patchless installation method that was called libuvc-backend: As far as I know, libuvc-backend is still a valid method of installation even after RSUSB was introduced. https://github.com/IntelRealSense/librealsense/blob/master/doc/libuvc_installation.md |
Correct me if I'm wrong, but isn't libuvc the old name for RSUSB? CMakeLists.txt seems to say so, and flips RSUSB on if you specify the flag:
Without
Which translates to using the direct v4l backend with patched kernel modules. |
RSUSB did replace the term libuvc in the CMake build flag instructions, yes. There were several different libuvc commands that were simplified to just a single FORCE_RSUSB_BACKEND command. Having looked at the instructions in the libuvc_installation.sh script, it does seem to essentially perform the same CMake commands as the RSUSB instructions. My apologies. |
Hi @SirDifferential Do you wish to continue this discussion please? Thanks! |
Yes, I would prefer this to be kept open until it's verified as a bug and fixed, or until there's verification that this is simply invalid usage of the API from my part. |
I have been over the case thoroughly again and there does not seem to many options to pursue.
I suspect that a solution is going to involve some kind of progress on the issue of RSUSB timeout periods that was previously discussed. |
Hi @SirDifferential You mentioned earlier that "I would prefer this to be kept open until it's verified as a bug and fixed, or until there's verification that this is simply invalid usage of the API from my part." I will ask about this case within Intel in order to bring the case to a resolution, one way or the other. |
After discussion with Intel, I have filed an offcial bug report. This is not confirmation that it definitely is a bug, but rather that it should be investigated to determine whether or not it is one. |
@MartyG-RealSense Has there been any kind of reaction from Intel yet? We're still experiencing issues toggling the |
The official bug report I sumitted on October 23 2020 is still active but there is no further information that I can provide at this time. |
I also experienced "failed to set power state" errors with the RSUSB backend for code which worked fine with the V4L2 backend. I found a solution to this problem which I described here: |
That's an interesting find! I'll give it a try when I'm back in the offices after my vacation. |
Hi @SirDifferential Were you able to test the suggestion of @puzzlepaint please? Thanks! |
Hi @SirDifferential Do you have an update about this case that you can provide regarding testing the suggestion of @puzzlepaint please? Thanks! |
Sorry about the delay. I just got back in the office and will check this during this week. |
Thanks very much for the update @SirDifferential |
I applied the suggestion by @puzzlepaint into minimal_rs_advancedmode, and the result is the auto exposure and related settings toggling properly with RSUSB. Thanks for suggestion! As to librealsense itself, I tried digging the sources for how this issue could be fixed, but it didn't seem that easy to do. I recommend you at least document this bug in the pipeline / sensor classes in some way. Do you want to keep this issue, and perhaps #9157 as well, open until a proper solution is introduced into the library? |
Hi @SirDifferential It's excellent to hear that you were able to implement a successful toggle with the advice of @puzzlepaint :) As this case has an active Intel bug report associated with it, the case should be kept open until that bug report has an outcome. |
The Intel bug report investigation was concluded and closed as it was decided that the problem was in the script code being used rather than an SDK bug. @SirDifferential and @puzzlepaint Is there any further comment that you would like to make about this issue, please or can it be closed? Thanks! |
Given that the requirement for users of librealsense to re-query the camera objects after starting streaming is easily overlooked (since that works fine with the V4L2 backend and only breaks with RSUSB), from a library design standpoint, I believe that it could be worthwhile for Intel to look into removing this requirement on the library's side (making it work with RSUSB too), or at least detect the wrong usage and warn about it. Otherwise, it seems very likely to me that more users of librealsense will run into this issue in the future. But if there is no interest in doing that on Intel's side, then I think that this can be closed. |
Thanks very much @puzzlepaint for your detailed feedback! Intel made some changes to RSUSB in SDK 2.50.0. Quoting from the 2.50.0 release notes: [RSUSB] Backend - reattach kernel driver. |
This sounds to me like it relates to a different issue. In any case, from my point of view, this issue here could be closed unless @SirDifferential wants to keep it open. |
Thanks @puzzlepaint - I just wanted to highlight that there have been changes to the RSUSB system since this case was began. |
I've changed companies ever since this bug was started, so I no longer have a way to debug or test this. But I agree with everything @puzzlepaint said. Close this, but some people may be experiencing this in the future. |
Issue Description
When building the SDK with
FORCE_RSUSB_BACKEND=ON
, the emitter, auto exposure and region of interest requests don't always work on a D415/D435. Here's what the errors are:Two things of note:
failed to set power state
, then withresponse 0= Success
. The second one is an oversight in the RealSense SDK that confused me for a while, but happens because of this part of hw-monitor.cpp where the firmware is supposed to respond withnewCommand.cmd
, in this case0x44
, but it responds with zero, which is then parsed ashwmon_response
where 0 meanshwm_Success
.RS2_OPTION_EMITTER_ENABLED
at all.Other errors the requests sometimes produce are:
Here's a minimal program demonstrating this.
The text was updated successfully, but these errors were encountered: