forked from bluespace-ai/bluespace_ai_xsens_ros_mti_driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
132 lines (94 loc) · 6.11 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
=[ Xsens MTi driver for ROS 2.0]============================================================
Documentation:
You can find the full documentation in "<your MT SDK directory>/doc/xsensdeviceapi/doc/html/index.html" under "ROS MTi driver" section. The SDK can be downloaded from https://www.xsens.com/software-downloads. Please note, this is a 3rd Party driver with no official support. Check the compatibility section for the compatible devices. For official support on Xsens MTi products, please refer to Xsens knowledge base: https://base.xsens.com
Prerequisites:
- ROS 2.0 Foxy
- C/C++ Compiler: GCC 5.4.0 or MSVC 14.0
- C++14
Building:
- Copy bluespace_ai_xsens_mti_driver folder into your ROS 2.0 workspace 'src' folder.
Make sure the permissions are set to o+rw on your files and directories.
- Build xspublic from your ament workspace:
$ pushd src/bluespace_ai_xsens_ros_mti_driver/lib/xspublic && make && popd
- Build Xsens MTi driver package:
$ colcon build
- Source workspace:
$ source install/setup.bash
Changes in this release compared to the Xsens ROS 1.0 driver open source:
- Added ROS 2.0 support: The ROS 1.0 wrapper node was modified to work with ROS 2.0.
- Migration to declared configuration parameters: ROS 1.0 driver supported undeclared parameters. Since ROS 2.0 guidelines discourage undeclared parameters, there are some minor modifications in the xsens_mti_node.yaml to support all the configuration capabilities from ROS1.0. For more details check the config file.
- A boolean parameter scan_for_devices was added to enable switching between port scanning and connecting to a specific port for Xsens devices.
- A boolean parameter enable_logging was added for logging. When enabled, the name of the file needs to be specified in the log_file parameter.
- Magnetometer topic switched to sensor_msgs/MagneticField : The message type of the magnetometer measurement topic (/imu/mag) was switched to sensor_msgs/MagneticField from previous geometry_msgs/Vector3Stamped. This was a TODO item left in the original source.
Running:
- Configure your MTi device to output desired data (e.g. for display example - orientation output)
- Launch the Xsens MTi driver from your ament workspace:
$ ros2 launch bluespace_ai_xsens_mti_driver xsens_mti_node.launch.py
After the device has been detected, you can communicate with it from another process / terminal window.
For example:
$ ros2 topic echo /filter/quaternion
This will result in a continuous stream of data output:
---
header:
seq: 1386351
stamp:
secs: 1545223809
nsecs: 197252179
frame_id: "imu_link"
quaternion:
x: 0.00276306713931
y: 0.00036825647112
z: -0.89693570137
w: -0.442152231932
---
- There is also an example that shows a 3D visualization of the device (orientation data should be enabled in the device):
$ ros2 launch bluespace_ai_xsens_mti_driver display.launch.py
Compatibility:
- The driver is compatible with following Xsens IMU product lines:
MTi 1-series
MTi 10-series
MTi 100-series
MTi 600-series
- The driver has been tested on amd64 as well as ARM 64-bit (aarch64) architectures.
Notes:
- ROS timestamps
The data messages from devices are time stamped on arrival in the ROS driver.
When collecting data at higher rates, eg 100 Hz, the times between reads can differ from the configured output rate in the device.
This is caused by possible buffering in the USB/FTDI driver.
For instance:
10 us, 10 us, 10 us, 45 ms, 10 us, 10 us, 10 us, 39 ms, 10 us, etc.
instead of
10 ms, 10 ms, 10 ms, 10 ms, 10 ms, 10 ms, 10 ms, 10 ms, 10 ms, etc.
Work-around: for accurate and stable time stamp information, users can make use of the sensor reported time stamp (/imu/time_ref) instead.
-[ Troubleshooting ]------------------------------------------------------------
- The Mti1 (Motion Tracker Development Board) is not recognized.
Support for the Development Board is present in recent kernels. (Since June 12, 2015).
If your kernel does not support the Board, you can add this manually
$ sudo /sbin/modprobe ftdi_sio
$ echo 2639 0300 | sudo tee /sys/bus/usb-serial/drivers/ftdi_sio/new_id
- The device is recognized, but I cannot ever access the device -
Make sure you are in the correct group (often dialout or uucp) in order to
access the device. You can test this with
$ ls -l /dev/ttyUSB0
crw-rw---- 1 root dialout 188, 0 May 6 16:21 /dev/ttyUSB0
$ groups
dialout audio video usb users plugdev
If you aren't in the correct group, you can fix this in two ways.
1. Add yourself to the correct group
You can add yourself to it by using your distributions user management
tool, or call
$ sudo usermod -G dialout -a $USER
Be sure to replace dialout with the actual group name if it is
different. After adding yourself to the group, either relogin to your
user, or call
$ newgrp dialout
to add the current terminal session to the group.
2. Use udev rules
Alternatively, put the following rule into /etc/udev/rules.d/99-custom.rules
SUBSYSTEM=="tty", ATTRS{idVendor}=="2639", ACTION=="add", GROUP="$GROUP", MODE="0660"
Change $GROUP into your desired group (e.g. adm, plugdev, or usb).
- The device is inaccessible for a while after plugging it in -
When having problems with the device being busy the first 20 seconds after
plugin, purge the modemmanager application.
Acknowledgement:
Thank you to Steven Gies and his engineering team at Xsens Technologies for testing this driver against their complete MTi IMU product portfolio and reviewing the driver source.