-
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
T265 can only be accessed by the first pipe instantiated #3734
Comments
@stephen-systemfriend hello,
Refer to multicam example for the full code. |
@stephen-systemfriend , do you need more assistance with this ? |
the fix was perfect, thank you |
Were you able to launch multiple t265 with the help of ros. I am currently using realsense-ros package to launch one t265 (demo_t265.launch). I tried using the (rs_multiple_devices.launch) file, but it doesn't support two t265s at the time. Was there a fix you could find. Thank you |
@karry3775 I only had one t265 plugged in, so what you have is a different issue that you should probably open separately |
Thank you for your response. I will open a new issue in that case.
…On Tue, Jan 14, 2020, 6:19 PM stephen-systemfriend ***@***.***> wrote:
@karry3775 <https://github.com/karry3775> I only had one t265 plugged in,
so what you have is a different issue that you should probably open
separately
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#3734?email_source=notifications&email_token=AKLHQT3PQQW7Y3Y4UMTPKMLQ5ZJBJA5CNFSM4HFCIOL2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEI6TKEI#issuecomment-574436625>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKLHQT2VFDPAI6D54K5DJUDQ5ZJBJANCNFSM4HFCIOLQ>
.
|
|---------------------------------|------------------------------------------- |
| Camera Model | T265|
| Operating System & Version | Win 10 |
| Platform | PC/Raspberry Pi/ NVIDIA Jetson / etc.. |
| SDK Version | 2.20 |
| Language | C } |
If you create multiple rs::pipe objects, only the first one can find the T265. I think that they must be locking it in the constructor somewhere.
heres a MWE
`
#include
#include <librealsense2/rs.hpp>
int main()
{
std::string T265_serial = "845412110352";
std::string D435i_serial = "838212070412";
//if you swap these two, it will no longer run
rs2::pipeline T265_pipe;
rs2::pipeline D425i_pipe;
rs2::config T265_cfg, D435i_cfg;
}
`
The text was updated successfully, but these errors were encountered: