Skip to content

Commit

Permalink
fix(hesai): print PTP lock threshold as a number, not a character
Browse files Browse the repository at this point in the history
  • Loading branch information
mojomex committed Dec 2, 2024
1 parent 0746b0d commit cfadb5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nebula_common/include/nebula_common/hesai/hesai_common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ inline std::ostream & operator<<(std::ostream & os, HesaiSensorConfiguration con
os << "PTP Domain: " << std::to_string(arg.ptp_domain) << '\n';
os << "PTP Transport Type: " << arg.ptp_transport_type << '\n';
os << "PTP Switch Type: " << arg.ptp_switch_type << '\n';
os << "PTP Lock Threshold: " << arg.ptp_lock_threshold;
os << "PTP Lock Threshold: " << std::to_string(arg.ptp_lock_threshold);
return os;
}

Expand Down

0 comments on commit cfadb5a

Please sign in to comment.