Skip to content
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

Add D421 PID #3159

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions realsense2_camera/include/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ namespace realsense2_camera
const uint16_t RS430_MM_PID = 0x0ad5; // AWGT
const uint16_t RS_USB2_PID = 0x0ad6; // USB2
const uint16_t RS420_PID = 0x0af6; // PWG
const uint16_t RS421_PID = 0x1155; // D421
const uint16_t RS420_MM_PID = 0x0afe; // PWGT
const uint16_t RS410_MM_PID = 0x0aff; // ASR
const uint16_t RS400_MM_PID = 0x0b00; // PSR
Expand Down
1 change: 1 addition & 0 deletions realsense2_camera/src/realsense_node_factory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@ void RealSenseNodeFactory::startDevice()
case RS460_PID:
case RS415_PID:
case RS420_PID:
case RS421_PID:
case RS420_MM_PID:
case RS430_PID:
case RS430i_PID:
Expand Down
Loading