-
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
Api connection type #13612
Open
remibettan
wants to merge
3
commits into
IntelRealSense:development
Choose a base branch
from
remibettan:api_connection_type
base: development
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Api connection type #13612
remibettan
wants to merge
3
commits into
IntelRealSense:development
from
remibettan:api_connection_type
+4
−0
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hey, let's speak about this PR |
Nir-Az
reviewed
Dec 31, 2024
src/dds/rs-dds-device-proxy.cpp
Outdated
@@ -170,6 +170,7 @@ dds_device_proxy::dds_device_proxy( std::shared_ptr< const device_info > const & | |||
if( j.nested( "product-line" ).get_ex( str ) ) | |||
register_info( RS2_CAMERA_INFO_PRODUCT_LINE, str ); | |||
register_info( RS2_CAMERA_INFO_CAMERA_LOCKED, j.nested( "locked" ).default_value( true ) ? "YES" : "NO" ); | |||
register_info( RS2_CAMERA_INFO_USB_TYPE_DESCRIPTOR, "DDS" ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Connection_type
Nir-Az
reviewed
Dec 31, 2024
src/ds/d400/d400-device.cpp
Outdated
@@ -965,6 +965,8 @@ namespace librealsense | |||
|
|||
if (usb_modality) | |||
register_info(RS2_CAMERA_INFO_USB_TYPE_DESCRIPTOR, usb_type_str); | |||
else | |||
register_info(RS2_CAMERA_INFO_USB_TYPE_DESCRIPTOR, "GMSL"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Connection_type
remibettan
force-pushed
the
api_connection_type
branch
from
December 31, 2024 12:31
46fe0d1
to
f760a09
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Tracked by: RSDSO-18237