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 expected size check for AR00 DL00 command from UAM protocol specification. #106

Open
wants to merge 3 commits into
base: ros2-devel
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions include/urg_node/urg_c_wrapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ struct SerialConnection
int serial_baud;
};

static const size_t AR00_PACKET_SIZE = 4379;
static const size_t DL00_PACKET_SIZE = 1936;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are these actually the same for all Hokuyo lasers? That seems unlikely to me, since different lasers have different number of readings per scan

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My understanding is these commands (AR00 and DL00) are separate from the SCIP2.0 protocol which the urg_library is based on and are exclusively part of the UAM protocol specification (for safety LIDARs of which the UAM-05LP is the only one). I've attached the protocol spec.

UAM05LP_CommunicationSpecification_en_2_4_0_r1.pdf

Hence my confidence in setting these as fixed values as anyone using these detailed status commands would need to be doing it with a UAM-05LP scanner as non-safety scanners wouldn't support the UAM commands. It's a bit of a hack the way it's been implemented at the moment effectively switching protocols mid stream to get the safety data and then going back to SCIP to get the scan data again.

Ideally for safety scanners you'd switch to using the UAM protocol exclusively but that's a much bigger project as it would be good to integrate it into the urg_c library.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Happy to leave it open for people to chime in with other experiences.

As a middle ground we can also set the limit to the maximum string index AR00 and DL00 update functions.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That seems reasonable - I'm traveling for a few days - but I will test this out on the couple different Hokuyos I have when I get home next week to make sure it works as expected on the lower end lasers

Copy link
Contributor Author

@richardw347 richardw347 Mar 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've got a UST-10LX at home and ran a quick check, as expected with detailed_status = true the command fails and returns an empty packet. You do get some nasty socket errors though and node doesn't recover well.

I just pushed a quick product name get to the detailed_status branch of the getStatus() function which gives a nice friendly warning if the command isn't supported.

Let me know what you think?


class URGCWrapper
{
public:
Expand Down
12 changes: 8 additions & 4 deletions src/urg_c_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,10 @@ bool URGCWrapper::getAR00Status(URGStatus & status)
// Get the response
std::string response = sendCommand(str_cmd);

if (response.empty()) {
RCLCPP_WARN(logger_, "Received empty response from AR00 command");
if (response.empty() || response.size() < AR00_PACKET_SIZE) {
RCLCPP_WARN(
logger_, "Invalid response from AR00 expected size: %lu actual: %lu",
AR00_PACKET_SIZE, response.size());
return false;
}

Expand Down Expand Up @@ -419,8 +421,10 @@ bool URGCWrapper::getDL00Status(UrgDetectionReport & report)
// Get the response
std::string response = sendCommand(str_cmd);

if (response.empty()) {
RCLCPP_WARN(logger_, "Received empty response from DL00 command");
if (response.empty() || response.size() < DL00_PACKET_SIZE) {
RCLCPP_WARN(
logger_, "Invalid response from DL00 expected size: %lu actual: %lu",
DL00_PACKET_SIZE, response.size());
return false;
}

Expand Down
7 changes: 7 additions & 0 deletions src/urg_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,13 @@ bool UrgNode::updateStatus()
device_status_ = urg_->getSensorStatus();

if (detailed_status_) {
// check product supports this command
if (product_name_.find("UAM") != 0) {
RCLCPP_WARN(
this->get_logger(), "Detailed status only available for UAM series, your model is %s",
product_name_.c_str());
return false;
}
URGStatus status;
if (urg_->getAR00Status(status)) {
urg_node_msgs::msg::Status msg;
Expand Down