Line |
Branch |
Exec |
Source |
1 |
|
|
/** |
2 |
|
|
* @file demo_usb_stream_imu_3DM_GX3_25.cpp |
3 |
|
|
* @author Vincent Berenz (vincent.brenz@tuebingen.mpg.de) |
4 |
|
|
* @brief Testing imu connection directly via the drivers. See test_interface in |
5 |
|
|
* the same package for an example of the API. |
6 |
|
|
* @version 0.1 |
7 |
|
|
* @date 2019-05-09 |
8 |
|
|
* |
9 |
|
|
* @copyright Copyright (c) 2019 |
10 |
|
|
* |
11 |
|
|
*/ |
12 |
|
|
|
13 |
|
|
#include "real_time_tools/timer.hpp" |
14 |
|
|
#include "real_time_tools/usb_stream.hpp" |
15 |
|
|
|
16 |
|
|
/** |
17 |
|
|
* @brief Send the message that set the imu into stream mode or not. |
18 |
|
|
* |
19 |
|
|
* @param usb_stream is the usb interface. |
20 |
|
|
* @param stream_mode start or stop the stream mode. |
21 |
|
|
*/ |
22 |
|
✗ |
void continuous_mode_on(real_time_tools::UsbStream& usb_stream, |
23 |
|
|
bool stream_mode) |
24 |
|
|
{ |
25 |
|
✗ |
std::vector<uint8_t> reply; |
26 |
|
✗ |
std::vector<uint8_t> command; |
27 |
|
|
|
28 |
|
|
/** |
29 |
|
|
* Here we set the IMU into a constant broadcasting mode. The broadcasted |
30 |
|
|
* data are composed with the accelerometer and the gyroscope. |
31 |
|
|
* https://atlas.is.localnet/confluence/display/AMDW/Microstrain+3DM+IMUs?preview=/8979810/17761244/3DM-GX3-Data-Communications-Protocol.pdf |
32 |
|
|
*/ |
33 |
|
✗ |
command.resize(4); |
34 |
|
✗ |
command[0] = 0xc4; // set continuous mode on |
35 |
|
✗ |
command[1] = 0xc1; // user confirmation 1 |
36 |
|
✗ |
command[2] = 0x29; // user confirmation 2 |
37 |
|
✗ |
command[3] = |
38 |
|
|
0xc2; // Acceleration and angular rate continuously broadcasted |
39 |
|
✗ |
reply.resize(8, 0); // answer in 8 bits. |
40 |
|
|
|
41 |
|
✗ |
rt_printf("The IMU will blink fast\n"); |
42 |
|
✗ |
while (!(reply[0] == 0xC4 && reply[1] == 0xc2)) |
43 |
|
|
{ |
44 |
|
✗ |
usb_stream.write_device(command); |
45 |
|
✗ |
usb_stream.read_device(reply, stream_mode); |
46 |
|
|
} |
47 |
|
✗ |
rt_printf("Device answer is: %s\n", |
48 |
|
✗ |
real_time_tools::UsbStream::msg_debug_string(reply).c_str()); |
49 |
|
✗ |
rt_printf("The IMU should blink fast\n"); |
50 |
|
|
} |
51 |
|
|
|
52 |
|
|
/** |
53 |
|
|
* @brief Check the mode of the imu. |
54 |
|
|
* |
55 |
|
|
* @param usb_stream usb communication interface. |
56 |
|
|
* @param stream_mode read the socket in stream mode or not. |
57 |
|
|
* @return true imu is in stream mode |
58 |
|
|
* @return false imu is in idle mode |
59 |
|
|
*/ |
60 |
|
✗ |
bool is_continuous_mode_on(real_time_tools::UsbStream& usb_stream, |
61 |
|
|
bool stream_mode) |
62 |
|
|
{ |
63 |
|
✗ |
std::vector<uint8_t> reply; |
64 |
|
✗ |
std::vector<uint8_t> command; |
65 |
|
|
|
66 |
|
|
/** |
67 |
|
|
* Ask current mode |
68 |
|
|
* https://atlas.is.localnet/confluence/display/AMDW/Microstrain+3DM+IMUs?preview=/8979810/17761244/3DM-GX3-Data-Communications-Protocol.pdf |
69 |
|
|
*/ |
70 |
|
✗ |
command.resize(4); |
71 |
|
✗ |
command[0] = 0xd4; // set continuous mode on |
72 |
|
✗ |
command[1] = 0xa3; // user confirmation 1 |
73 |
|
✗ |
command[2] = 0x47; // user confirmation 2 |
74 |
|
✗ |
command[3] = 0; // request continuous mode |
75 |
|
✗ |
reply.resize(4, 0); // answer in 8 bits. |
76 |
|
|
|
77 |
|
✗ |
bool success = usb_stream.write_device(command); |
78 |
|
✗ |
success = success && usb_stream.read_device(reply, stream_mode); |
79 |
|
✗ |
rt_printf("is continuous mode reply: %s\n", |
80 |
|
✗ |
real_time_tools::UsbStream::msg_debug_string(reply).c_str()); |
81 |
|
✗ |
return success && (reply[1] > 0); |
82 |
|
|
} |
83 |
|
|
|
84 |
|
|
/** |
85 |
|
|
* @brief Set the imu into idle mode |
86 |
|
|
* |
87 |
|
|
* @param usb_stream |
88 |
|
|
* @param stream_mode |
89 |
|
|
*/ |
90 |
|
✗ |
void continuous_mode_off(real_time_tools::UsbStream& usb_stream, |
91 |
|
|
bool stream_mode) |
92 |
|
|
{ |
93 |
|
✗ |
std::vector<uint8_t> reply; |
94 |
|
✗ |
std::vector<uint8_t> command; |
95 |
|
|
|
96 |
|
|
/** |
97 |
|
|
* Here we set the IMU into a constant broadcasting mode. The broadcasted |
98 |
|
|
* data are composed with the accelerometer and the gyroscope. |
99 |
|
|
* https://atlas.is.localnet/confluence/display/AMDW/Microstrain+3DM+IMUs?preview=/8979810/17761244/3DM-GX3-Data-Communications-Protocol.pdf |
100 |
|
|
*/ |
101 |
|
✗ |
command.resize(4); |
102 |
|
✗ |
command[0] = 0xc4; // set continuous mode on |
103 |
|
✗ |
command[1] = 0xc1; // user confirmation 1 |
104 |
|
✗ |
command[2] = 0x29; // user confirmation 2 |
105 |
|
✗ |
command[3] = |
106 |
|
|
0x00; // Acceleration and angular rate continuously broadcasted |
107 |
|
✗ |
reply.resize(8, 0xFF); // answer in 8 bits. |
108 |
|
|
|
109 |
|
✗ |
rt_printf("The IMU will blink slowly\n"); |
110 |
|
✗ |
while (!(reply[0] == 0xC4 && reply[1] == 0x00)) |
111 |
|
|
{ |
112 |
|
✗ |
usb_stream.write_device(command); |
113 |
|
✗ |
usb_stream.read_device(reply, stream_mode); |
114 |
|
|
} |
115 |
|
✗ |
rt_printf("Device answer is: %s\n", |
116 |
|
✗ |
real_time_tools::UsbStream::msg_debug_string(reply).c_str()); |
117 |
|
✗ |
rt_printf("The IMU should blink slowly\n"); |
118 |
|
|
} |
119 |
|
|
|
120 |
|
|
/** |
121 |
|
|
* @brief Reset the imu. |
122 |
|
|
* |
123 |
|
|
* @param usb_stream |
124 |
|
|
* @param stream_mode |
125 |
|
|
*/ |
126 |
|
✗ |
void reset(real_time_tools::UsbStream& usb_stream, bool stream_mode) |
127 |
|
|
{ |
128 |
|
✗ |
std::vector<uint8_t> reply; |
129 |
|
✗ |
std::vector<uint8_t> command; |
130 |
|
|
|
131 |
|
|
/** |
132 |
|
|
* Device reset |
133 |
|
|
*/ |
134 |
|
✗ |
command.resize(3); |
135 |
|
✗ |
command[0] = 0xfe; // reset device |
136 |
|
✗ |
command[1] = 0x9e; // user confirmation 1 |
137 |
|
✗ |
command[2] = 0x3a; // user confirmation 2 |
138 |
|
✗ |
reply.resize(0, 0); // answer in 8 bits. |
139 |
|
|
|
140 |
|
✗ |
rt_printf("The IMU is resetting\n"); |
141 |
|
✗ |
usb_stream.write_device(command); |
142 |
|
✗ |
usb_stream.read_device(reply, stream_mode); |
143 |
|
✗ |
rt_printf("Device answer is: %s\n", |
144 |
|
✗ |
real_time_tools::UsbStream::msg_debug_string(reply).c_str()); |
145 |
|
✗ |
rt_printf("The IMU is reset\n"); |
146 |
|
✗ |
real_time_tools::Timer::sleep_sec(10); |
147 |
|
|
} |
148 |
|
|
|
149 |
|
|
/** |
150 |
|
|
* @brief Example on how to use the usb interface using an imu. |
151 |
|
|
* |
152 |
|
|
* @param argc |
153 |
|
|
* @param argv |
154 |
|
|
* @return int |
155 |
|
|
*/ |
156 |
|
✗ |
int main(int argc, char** argv) |
157 |
|
|
{ |
158 |
|
|
/** |
159 |
|
|
* The software input is the path to the port: /dev/tty0 |
160 |
|
|
*/ |
161 |
|
✗ |
if (argc != 2) |
162 |
|
|
{ |
163 |
|
✗ |
printf("usage: demo_device_stream <device>\ne.g. %s /dev/tty0\n", |
164 |
|
|
argv[0]); |
165 |
|
✗ |
return -1; |
166 |
|
|
} |
167 |
|
|
|
168 |
|
|
/** |
169 |
|
|
* Initialization, the IMU should blink slowly |
170 |
|
|
*/ |
171 |
|
|
|
172 |
|
|
// Let us acquire the device path from the application arguments |
173 |
|
✗ |
std::string device = std::string(argv[1]); |
174 |
|
|
|
175 |
|
|
/** We create a UsbStream object that will allow us to interact with the dev |
176 |
|
|
* port. |
177 |
|
|
*/ |
178 |
|
✗ |
real_time_tools::UsbStream usb_stream; |
179 |
|
|
|
180 |
|
|
/** If you receive some permission denied, please add yourself in the |
181 |
|
|
* "dialout" group: sudo usermod -a -G dialout [YOUR_USER_NAME] Ask an admin |
182 |
|
|
* to do it for you if you do not have the sudo rights. |
183 |
|
|
*/ |
184 |
|
✗ |
if (!usb_stream.open_device(device)) |
185 |
|
|
{ |
186 |
|
✗ |
return -1; |
187 |
|
|
} |
188 |
|
|
|
189 |
|
|
/** We need to create some port configuration. These configuration are valid |
190 |
|
|
* for the IMU 3DM-GX3-25 from micro-strain initialization. |
191 |
|
|
*/ |
192 |
|
|
real_time_tools::PortConfig port_config; |
193 |
|
✗ |
port_config.rts_cts_enabled_ = false; |
194 |
|
✗ |
port_config.parity_ = false; |
195 |
|
✗ |
port_config.stop_bits_ = real_time_tools::PortConfig::StopBits::one; |
196 |
|
✗ |
port_config.prepare_size_definition_ = false; |
197 |
|
✗ |
port_config.data_bits_ = real_time_tools::PortConfig::cs8; |
198 |
|
✗ |
port_config.baude_rate_ = 115200; |
199 |
|
✗ |
usb_stream.set_port_config(port_config); |
200 |
|
✗ |
usb_stream.set_poll_mode_timeout(0.1); |
201 |
|
|
|
202 |
|
|
// stream mode of the usb port |
203 |
|
✗ |
bool stream_mode = false; |
204 |
|
|
|
205 |
|
✗ |
real_time_tools::Timer::sleep_sec(1); |
206 |
|
|
|
207 |
|
|
/** |
208 |
|
|
* send some messages |
209 |
|
|
*/ |
210 |
|
✗ |
continuous_mode_on(usb_stream, stream_mode); |
211 |
|
✗ |
real_time_tools::Timer::sleep_sec(5); |
212 |
|
|
|
213 |
|
✗ |
usb_stream.flush(); |
214 |
|
✗ |
continuous_mode_off(usb_stream, stream_mode); |
215 |
|
✗ |
usb_stream.flush(); |
216 |
|
|
|
217 |
|
✗ |
rt_printf("Close port\n"); |
218 |
|
✗ |
usb_stream.close_device(); |
219 |
|
|
|
220 |
|
✗ |
rt_printf("Stop program\n"); |
221 |
|
✗ |
return 0; |
222 |
|
|
} |
223 |
|
|
|
224 |
|
|
/** |
225 |
|
|
* \example demo_usb_stream_imu_3DM_GX3_25.cpp |
226 |
|
|
* |
227 |
|
|
* In order to use this Demo one must have an IMU 3DM-GX3-25 from micro-strain |
228 |
|
|
* plug in one of the usb port of the computer. |
229 |
|
|
* https://atlas.is.localnet/confluence/display/AMDW/Microstrain+3DM+IMUs?preview=/8979810/17761244/3DM-GX3-Data-Communications-Protocol.pdf |
230 |
|
|
* |
231 |
|
|
* This demos present the use of the usb socket use using the real_time_tools |
232 |
|
|
* API. |
233 |
|
|
* |
234 |
|
|
* One need to create a real_time_tools::UsbStream. This class allows you to |
235 |
|
|
* open a device, which means that the class connects this process to a |
236 |
|
|
* usb communication socket.One can initialize the socket parameters through |
237 |
|
|
* the real_time_tools::PortConfig structure. Once open one can simply use the |
238 |
|
|
* communication protocole of the hardware to send and receive messages. |
239 |
|
|
* |
240 |
|
|
*/ |
241 |
|
|
|