-
Notifications
You must be signed in to change notification settings - Fork 61
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
Garbage diagnostics data when the IMU is not connected #29
Comments
Sounds good. We should probably also set the hardware ID to "NONE" or "" or whatever in the other case (when the IMU isn't connected). And while we're at it, we should also change the tabs to spaces in that function. PR welcome, since I don't have an IMU for testing at the moment. :) |
Hi Mintar, I want to integrate the "4x Isolated Digital Input Phidget" to :::ROS are there any drivers or a package for that particular phidget? Sorry if my question is silly. i am very new to :::ROS |
I'm going to close this because diagnostics support was removed in Noetic (see #43). If somebody ever gets around to re-adding diagnostics support, we should make sure that we resolve this issue as well. |
We fill hardware IDs if the IMU is not connected here:
https://github.com/ros-drivers/phidgets_drivers/blob/kinetic/phidgets_imu/src/imu_ros_i.cpp#L174
This leads to broken strings (we added a
ROS_FATAL
below to print the data):Also the
calibrate()
in the function probably only makes sense if the IMU is connected. So maybe adding both to anelse
case is enough?The text was updated successfully, but these errors were encountered: