Skip to content

Commit

Permalink
Remove D421 from bundled FW checks
Browse files Browse the repository at this point in the history
  • Loading branch information
OhadMeir committed Jun 20, 2024
1 parent 97a324f commit 8102f99
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion common/device-model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,8 @@ namespace rs2

auto dev_name = get_device_name(dev);

if( dev.is<update_device>() || is_upgradeable( fw, recommended_fw_ver) )
// TODO - D421. Don't suggest to update FW as it doesn't support D421. Revert after 5.17 release with supporting FW
if( ( dev.is<update_device>() || is_upgradeable( fw, recommended_fw_ver) ) && pid != "0B5D" ) // 0x0B5D is D421 PID
{
std::stringstream msg;

Expand Down

0 comments on commit 8102f99

Please sign in to comment.