Skip to content

Commit

Permalink
PR #13538 from noacoohen: Fix D405 AE ROI issue
Browse files Browse the repository at this point in the history
  • Loading branch information
OhadMeir authored Nov 25, 2024
2 parents f59e26d + f670127 commit f82b2ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ds/d400/d400-color.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ namespace librealsense
{
firmware_version fw_ver = firmware_version( get_info( RS2_CAMERA_INFO_FIRMWARE_VERSION ) );

if( fw_ver >= firmware_version( 5, 10, 9, 0 ) )
if( fw_ver >= firmware_version( 5, 10, 9, 0 ) && _pid != ds::RS405_PID ) //D405 does not support an actual RGB sensor
register_feature( std::make_shared< auto_exposure_roi_feature >( get_color_sensor(), _hw_monitor, true ) );
}

Expand Down

0 comments on commit f82b2ff

Please sign in to comment.