forked from LORD-MicroStrain/mip_sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
watch_imu.c
283 lines (228 loc) · 8.72 KB
/
watch_imu.c
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
#include <mip/mip_dispatch.h>
#include <mip/mip_field.h>
#include <mip/mip_interface.h>
#include <mip/mip_result.h>
#include <mip/mip_types.h>
#include <mip/mip_logging.h>
#include <mip/utils/serialization.h>
#include <mip/definitions/descriptors.h>
#include <mip/definitions/commands_base.h>
#include <mip/definitions/commands_3dm.h>
#include <mip/definitions/data_sensor.h>
#include <mip/utils/serial_port.h>
#include <mip/mip_logging.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <time.h>
#include <stdarg.h>
#include <inttypes.h>
#ifdef WIN32
#else
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <termios.h>
#endif
serial_port port;
uint8_t parse_buffer[1024];
mip_interface device;
mip_sensor_scaled_accel_data scaled_accel;
void customLog(void* user, mip_log_level level, const char* fmt, va_list args)
{
switch (level)
{
case MIP_LOG_LEVEL_FATAL:
case MIP_LOG_LEVEL_ERROR:
vfprintf(stderr, fmt, args);
break;
default:
vprintf(fmt, args);
break;
}
}
void handlePacket(void* unused, const mip_packet* packet, mip_timestamp timestamp)
{
(void)unused;
printf("\nGot packet with descriptor set 0x%02X:", mip_packet_descriptor_set(packet));
mip_field field;
mip_field_init_empty(&field);
while( mip_field_next_in_packet(&field, packet) )
{
printf(" %02X", mip_field_field_descriptor(&field));
}
printf("\n");
}
void handleAccel(void* user, const mip_field* field, mip_timestamp timestamp)
{
(void)user;
mip_sensor_scaled_accel_data data;
if(extract_mip_sensor_scaled_accel_data_from_field(field, &data))
{
// Compute delta from last packet (the extractor runs after this, so the data is one packet behind).
float delta[3] = {
data.scaled_accel[0] - scaled_accel.scaled_accel[0],
data.scaled_accel[1] - scaled_accel.scaled_accel[1],
data.scaled_accel[2] - scaled_accel.scaled_accel[2],
};
printf("Accel Data: %f, %f, %f (delta %f, %f, %f)\n", data.scaled_accel[0], data.scaled_accel[1], data.scaled_accel[2], delta[0], delta[1], delta[2]);
}
}
void handleGyro(void* user, const mip_field* field, mip_timestamp timestamp)
{
(void)user;
mip_sensor_scaled_gyro_data data;
if(extract_mip_sensor_scaled_gyro_data_from_field(field, &data))
printf("Gyro Data: %f, %f, %f\n", data.scaled_gyro[0], data.scaled_gyro[1], data.scaled_gyro[2]);
}
void handleMag(void* user, const mip_field* field, mip_timestamp timestamp)
{
(void)user;
mip_sensor_scaled_mag_data data;
if(extract_mip_sensor_scaled_mag_data_from_field(field, &data))
printf("Mag Data: %f, %f, %f\n", data.scaled_mag[0], data.scaled_mag[1], data.scaled_mag[2]);
}
time_t startTime;
mip_timestamp get_current_timestamp()
{
time_t t;
time(&t);
double delta = difftime(t, startTime);
return (mip_timestamp)(delta * 1000);
}
bool mip_interface_user_recv_from_device(mip_interface* device, uint8_t* buffer, size_t max_length, mip_timeout wait_time, size_t* out_length, mip_timestamp* timestamp_out)
{
(void)device;
*timestamp_out = get_current_timestamp();
if( !serial_port_read(&port, buffer, max_length, wait_time, out_length) )
return false;
return true;
}
bool mip_interface_user_send_to_device(mip_interface* device, const uint8_t* data, size_t length)
{
(void)device;
size_t bytes_written;
if (!serial_port_write(&port, data, length, &bytes_written))
return false;
return true;
}
bool open_port(const char* name, uint32_t baudrate)
{
return serial_port_open(&port, name, baudrate);
}
int usage(const char* argv0)
{
fprintf(stderr, "Usage: %s <port> <baudrate>\n", argv0);
return 1;
}
int main(int argc, const char* argv[])
{
if(argc != 3)
return usage(argv[0]);
uint32_t baudrate = atoi(argv[2]);
if( baudrate == 0 )
return usage(argv[0]);
// Initialize the MIP logger before opening the port so we can print errors if they occur
MIP_LOG_INIT(&customLog, MIP_LOG_LEVEL_INFO, NULL);
if( !open_port(argv[1], baudrate) )
return 1;
mip_interface_init(
&device, parse_buffer, sizeof(parse_buffer), mip_timeout_from_baudrate(baudrate), 1000,
&mip_interface_user_send_to_device, &mip_interface_user_recv_from_device, &mip_interface_default_update, NULL
);
// Record program start time for use with difftime in getTimestamp().
time(&startTime);
enum mip_cmd_result result;
// Get the base rate.
uint16_t base_rate;
result = mip_3dm_get_base_rate(&device, MIP_SENSOR_DATA_DESC_SET, &base_rate);
if( result != MIP_ACK_OK )
{
fprintf(stderr, "Failed to get base rate: %s (%d)\n", mip_cmd_result_to_string(result), result);
goto done;
}
// Set the message format to stream at 100 Hz.
const uint16_t sample_rate = 100; // Hz
const uint16_t decimation = base_rate / sample_rate;
const mip_descriptor_rate descriptors[3] = {
{ MIP_DATA_DESC_SENSOR_ACCEL_SCALED, decimation },
{ MIP_DATA_DESC_SENSOR_GYRO_SCALED, decimation },
{ MIP_DATA_DESC_SENSOR_MAG_SCALED, decimation },
};
result = mip_3dm_write_message_format(&device, MIP_SENSOR_DATA_DESC_SET, 3, descriptors);
if( result == MIP_NACK_INVALID_PARAM )
{
// Failed to set message format - maybe this device doesn't have a magnetometer.
// Try again without the last descriptor (scaled mag).
result = mip_3dm_write_message_format(&device, MIP_SENSOR_DATA_DESC_SET, 2, descriptors);
}
if( result != MIP_ACK_OK )
{
fprintf(stderr, "Failed to set message format: %s (%d)\n", mip_cmd_result_to_string(result), result);
goto done;
}
// Register some callbacks.
mip_dispatch_handler packet_handler;
mip_dispatch_handler data_handlers[4];
mip_interface_register_packet_callback(&device, &packet_handler, MIP_DISPATCH_ANY_DATA_SET, false, &handlePacket, NULL);
mip_interface_register_field_callback(&device, &data_handlers[0], MIP_SENSOR_DATA_DESC_SET, MIP_DATA_DESC_SENSOR_ACCEL_SCALED, &handleAccel, NULL);
mip_interface_register_field_callback(&device, &data_handlers[1], MIP_SENSOR_DATA_DESC_SET, MIP_DATA_DESC_SENSOR_GYRO_SCALED , &handleGyro , NULL);
mip_interface_register_field_callback(&device, &data_handlers[2], MIP_SENSOR_DATA_DESC_SET, MIP_DATA_DESC_SENSOR_MAG_SCALED , &handleMag , NULL);
mip_interface_register_extractor(&device, &data_handlers[3], MIP_SENSOR_DATA_DESC_SET, MIP_DATA_DESC_SENSOR_ACCEL_SCALED, &extract_mip_sensor_scaled_accel_data_from_field, &scaled_accel);
result = mip_base_resume(&device);
if( result != MIP_ACK_OK )
{
fprintf(stderr, "Failed to resume device: %s (%d)\n", mip_cmd_result_to_string(result), result);
goto done;
}
// Process data for 3 seconds.
for(unsigned int i=0; i<30; i++)
{
#ifdef WIN32
#else
usleep(100000);
#endif
mip_interface_update(&device, false);
}
result = mip_base_set_idle(&device);
if( result != MIP_ACK_OK )
{
fprintf(stderr, "Failed to idle device: %s (%d)\n", mip_cmd_result_to_string(result), result);
goto done;
}
done:
#ifdef MIP_ENABLE_DIAGNOSTICS
printf(
"\nDiagnostics:\n"
"\n"
"Commands:\n"
" Sent: %" PRIu16 "\n"
" Acks: %" PRIu16 "\n"
" Nacks: %" PRIu16 "\n"
" Timeouts: %" PRIu16 "\n"
" Errors: %" PRIu16 "\n"
"\n"
"Parser:\n"
" Valid packets: %" PRIu32 "\n"
" Invalid packets: %" PRIu32 "\n"
" Timeouts: %" PRIu32 "\n"
"\n"
" Bytes read: %" PRIu32 "\n"
" Valid bytes: %" PRIu32 "\n"
" Unparsed bytes: %" PRIu32 "\n",
mip_cmd_queue_diagnostic_cmds_queued(mip_interface_cmd_queue(&device)),
mip_cmd_queue_diagnostic_cmd_acks(mip_interface_cmd_queue(&device)),
mip_cmd_queue_diagnostic_cmd_nacks(mip_interface_cmd_queue(&device)),
mip_cmd_queue_diagnostic_cmd_timeouts(mip_interface_cmd_queue(&device)),
mip_cmd_queue_diagnostic_cmd_errors(mip_interface_cmd_queue(&device)),
mip_parser_diagnostic_valid_packets(mip_interface_parser(&device)),
mip_parser_diagnostic_invalid_packets(mip_interface_parser(&device)),
mip_parser_diagnostic_timeouts(mip_interface_parser(&device)),
mip_parser_diagnostic_bytes_read(mip_interface_parser(&device)),
mip_parser_diagnostic_packet_bytes(mip_interface_parser(&device)),
mip_parser_diagnostic_bytes_skipped(mip_interface_parser(&device))
);
#endif // MIP_ENABLE_DIAGNOSTICS
serial_port_close(&port);
return result == MIP_ACK_OK ? 0 : 2;
}