Skip to content

Commit

Permalink
update D400 MIPI recovery PID
Browse files Browse the repository at this point in the history
  • Loading branch information
gwen2018 committed Feb 8, 2025
1 parent e90c7cd commit a691aa3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/ds/d400/d400-private.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ namespace librealsense
const uint16_t RS405_PID = 0x0B5B; // D405
const uint16_t RS455_PID = 0x0B5C; // D455
const uint16_t RS457_PID = 0xabcd; // D457
const uint16_t RS457_RECOVERY_PID = 0xbbcd; // D457 DFU Recovery
const uint16_t RS400_MIPI_RECOVERY_PID = 0xbbcd; // D4XX MIPI DFU Recovery
const uint16_t RS430_GMSL_PID = 0xabce; // D430 GMSL

// d400 Devices supported by the current version
Expand Down Expand Up @@ -136,7 +136,7 @@ namespace librealsense
{ RS405_PID, "Intel RealSense D405" },
{ RS455_PID, "Intel RealSense D455" },
{ RS457_PID, "Intel RealSense D457" },
{ RS457_RECOVERY_PID, "Intel RealSense D457 Recovery"},
{ RS400_MIPI_RECOVERY_PID, "Intel RealSense D4XX MIPI Recovery"},
{ RS430_GMSL_PID, "Intel RealSense D430" },
};

Expand Down Expand Up @@ -166,7 +166,7 @@ namespace librealsense
{RS405_PID, "5.12.11.8" },
{RS455_PID, "5.13.0.50" },
{RS457_PID, "5.13.1.1" },
{RS457_RECOVERY_PID, "5.13.1.1" },
{RS400_MIPI_RECOVERY_PID, "5.13.1.1" },
{RS430_GMSL_PID, "5.16.1.111" }, // TBD - update once formal firmware is available
};

Expand Down
2 changes: 1 addition & 1 deletion src/fw-update/fw-update-factory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ namespace librealsense
continue;
switch (info.pid)
{
case ds::RS457_RECOVERY_PID:
case ds::RS400_MIPI_RECOVERY_PID:
return std::make_shared< ds_d400_update_device >(shared_from_this(), mipi);
default:
// Do nothing
Expand Down

0 comments on commit a691aa3

Please sign in to comment.