Skip to content

Commit

Permalink
cr
Browse files Browse the repository at this point in the history
  • Loading branch information
remibettan committed Dec 31, 2024
1 parent 2ce776c commit f760a09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dds/rs-dds-device-proxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +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" );
register_info(RS2_CAMERA_INFO_CONNECTION_TYPE, "DDS" );

// Assumes dds_device initialization finished
struct sensor_info
Expand Down
2 changes: 1 addition & 1 deletion src/ds/d400/d400-device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,7 @@ 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");
register_info(RS2_CAMERA_INFO_CONNECTION_TYPE, "GMSL");

std::string curr_version= _fw_version;

Expand Down

0 comments on commit f760a09

Please sign in to comment.