Skip to content

Commit

Permalink
fix: incorrect nodemap acquired
Browse files Browse the repository at this point in the history
  • Loading branch information
jackyyyyys committed Oct 4, 2023
1 parent 63257d1 commit 4681734
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions catkin_ws/src/arena_camera/src/arena_camera_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,8 @@ bool ArenaCameraNode::startGrabbing()
// PACKETS
//
// configure Auto Negotiate Packet Size and Packet Resend
Arena::SetNodeValue<GenICam::bool>(pDevice_->GetNodeMap(), "StreamAutoNegotiatePacketSize", true);
Arena::SetNodeValue<GenICam::bool>(pDevice_->GetNodeMap(), "StreamPacketResendEnable", true);
Arena::SetNodeValue<bool>(pDevice->GetTLStreamNodeMap(), "StreamAutoNegotiatePacketSize", true);
Arena::SetNodeValue<bool>(pDevice->GetTLStreamNodeMap(), "StreamPacketResendEnable", true);

//
// TRIGGER MODE
Expand Down

0 comments on commit 4681734

Please sign in to comment.