This repository was archived by the owner on Jan 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +29
-0
lines changed
realsense_examples/config Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ /d435i :
2+ camera :
3+ ros__parameters :
4+ serial_no : 026222250386 # d455
5+ align_depth : false
6+ enable_pointcloud : true
7+ dense_pointcloud : true
8+ color0 :
9+ enabled : true
10+ resolution : [640,480]
11+ fps : 30
12+ depth0 :
13+ enabled : true
14+ resolution : [640,480]
15+ fps : 30
16+ infra1 :
17+ enabled : true
18+ resolution : [640,480]
19+ fps : 30
20+ infra2 :
21+ enabled : true
22+ resolution : [640,480]
23+ fps : 30
24+ accel0 :
25+ enabled : true
26+ gyro0 :
27+ enabled : true
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ namespace realsense
2828const uint16_t RS415_PID = 0x0ad3 ; // ASRC
2929const uint16_t RS435_RGB_PID = 0x0b07 ; // AWGC
3030const uint16_t RS435i_RGB_PID = 0x0B3A ; // AWGC_MM
31+ const uint16_t RS455_RGB_PID = 0x0B5C ; // D455
3132const uint16_t RS_T265_PID = 0x0b37 ; // T265
3233const uint16_t RS_USB2_PID = 0x0ad6 ; // USB2
3334using stream_index_pair = std::pair<rs2_stream, int >;
Original file line number Diff line number Diff line change @@ -91,6 +91,7 @@ void RealSenseNodeFactory::startDevice()
9191 RCLCPP_INFO (this ->get_logger (), " Create a node for D4X5 Camera" );
9292 rs_node_ = std::make_unique<RealSenseD435>(ctx_, dev_, *this );
9393 break ;
94+ case RS455_RGB_PID:
9495 case RS435i_RGB_PID:
9596 RCLCPP_INFO (this ->get_logger (), " Create a node for D435i Camera" );
9697 rs_node_ = std::make_unique<RealSenseD435I>(ctx_, dev_, *this );
You can’t perform that action at this time.
0 commit comments