Skip to content
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

Error when using D435i and t265 together #6084

Closed
raghav123456 opened this issue Mar 18, 2020 · 2 comments
Closed

Error when using D435i and t265 together #6084

raghav123456 opened this issue Mar 18, 2020 · 2 comments
Labels
multicam T260 series Intel® T265 library tracking 6-DOF tracking, SLAM and T26x series

Comments

@raghav123456
Copy link

Hello,
I am trying to run the sample example rs-tracking-and-depth
https://github.com/IntelRealSense/librealsense/tree/master/examples/tracking-and-depth
but i am getting this error -
RealSense error calling rs2_pipeline_start_with_config(pipe:0x55eaa29dbc00, config:0x55eaa29db000):
hwmon command 0x10 failed. Error type: (1).

i dont understand why this error
Device used : Tracking Camera ( t265 ) and
Depth camera ( D435i )
can someone help?

@radfordi
Copy link
Contributor

radfordi commented Mar 18, 2020

For now this construct is broken:

    for (auto&& dev : ctx.query_devices())
    {
        rs2::pipeline pipe(ctx);
        rs2::config cfg;
        cfg.enable_device(dev.get_info(RS2_CAMERA_INFO_SERIAL_NUMBER));
        pipe.start(cfg);
        pipelines.emplace_back(pipe);
    }

This is means that rs-multicam is broken with T265 as well. If we could pass the device to enable_device or make a list of serial numbers and then run the for loop above on them, then it would work.

The fundamental issues is that librealsense doesn't support two T265 rs2::devices existing at the same time. This is not the case for the D4XX cameras.

@RealSenseSupport
Copy link
Collaborator

Thank you for highlighting the issue with multi-cam using T265. We have moved our focus to our next generation of products and consequently, we will not be addressing this issue any further in the T265.

@RealSenseSupport RealSenseSupport added multicam T260 series Intel® T265 library tracking 6-DOF tracking, SLAM and T26x series labels Nov 12, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
multicam T260 series Intel® T265 library tracking 6-DOF tracking, SLAM and T26x series
Projects
None yet
Development

No branches or pull requests

3 participants