forked from lara-unb/APIs-NDI-Digital
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AuroraDriver.m
627 lines (501 loc) · 23.8 KB
/
AuroraDriver.m
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
classdef AuroraDriver < handle
%
% This class offers a collection of tools used in the command and
% comunication of NDI Medical electromagnetic tracking system.
%
% obj = AuroraDriver('$PATH$') creates an object linking to the device
% connected to the port specified by the user in '$PATH$'
%
% Specific functions are then called using obj.method_name(argument1,...)
%
% OBS: All functions that communicate with the Aurora SCU may fail.
% Command errors may be detected by checking the responded error code.
% Communication errors may be detected by checking the CRC of the
% obtained reply. In the current version of this driver none of these
% error checkings has been implemented.
% Author: André Augusto Geraldes
% Email: [email protected]
% July 2015; Last revision: March 2016
% Constants
properties (Constant)
% Formats for sending commands (source: Aurora_API_Guide page 4)
COMMAND_FORMAT_1 = 1;
COMMAND_FORMAT_2 = 2;
% Sensor reading options (source: Aurora_API_Guide page 12)
READ_OUT_OF_VOLUME_NOT_ALLOWED = '0001';
READ_OUT_OF_VOLUME_ALLOWED = '0801';
% Handle Status (source: Aurora_API_Guide page 13)
SENSOR_STATUS_VALID = '01';
SENSOR_STATUS_MISSING = '02';
SENSOR_STATUS_DISABLED = '04';
% Baud rate options (source: Aurora_API_Guide page 16)
BAUD_9600 = '0';
BAUD_14400 = '1';
BAUD_19200 = '2';
BAUD_38400 = '3';
BAUD_57600 = '4';
BAUD_115200 = '5';
BAUD_921600 = '6';
BAUD_230400 = 'A';
% Tool tracking priority codes (source: Aurora_API_Guide page 26)
TT_PRIORITY_STATIC = 'S';
TT_PRIORITY_DYNAMIC = 'D';
TT_PRIORITY_BUTTON = 'B';
% PHSR Reply options (source: Aurora_API_Guide page 33)
PHSR_HANDLES_ALL = '00';
PHSR_HANDLES_TO_BE_FREED = '01';
PHSR_HANDLES_OCCUPIED = '02';
PHSR_HANDLES_OCCUPIED_AND_INITIALIZED = '03';
PHSR_HANDLES_ENABLED = '04';
% Reset options
RESET_SOFT = '0';
RESET_HARD = '1';
% Tracking mode options (source: Aurora_API_Guide page 59)
TRACKING_OPTION_NONE = '';
TRACKING_OPTION_FAST_MODE = '40';
TRACKING_OPTION_RESET_COUNTER = '80';
TRACKING_OPTION_FAST_MODE_RESET_COUNTER = 'C0';
end
properties (GetAccess = public, SetAccess = private)
% Member variables
serial_port; % Serial port object
n_port_handles; % Number of existing port handles
port_handles; % Array of port handle objects
% Global parameters
selected_command_format;
% State variables
device_init;
end
% Public methods
methods (Access = public)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% CONSTRUCTOR %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function obj = AuroraDriver(serial_port)
obj.serial_port = serial(serial_port);
obj.serial_port.Terminator = 'CR';
obj.n_port_handles = 0;
obj.selected_command_format = obj.COMMAND_FORMAT_2;
obj.device_init = 0;
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SERIAL COMM FUNCTIONS %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function openSerialPort(obj)
if(strcmp(obj.serial_port.Status, 'closed'))
fopen(obj.serial_port);
end
end
function closeSerialPort(obj)
if(strcmp(obj.serial_port.Status, 'open'))
fclose(obj.serial_port);
end
end
function setBaudRate(obj, baud_rate)
% setBaudRate(baud_rate)
%
% This function allows setting the Baud Rate of the serial port,
% but it assumes all the other configurations of the port are:
% - Data bits = 8 bits
% - Parity = None
% - Stop bits = 1 bit
% - Hardware handshaking = OFF
%
% If any of these settings needs changing, this function must be
% modified.
%
% For further information on the serial port parameters, reffer to
% the Aurora_API_Guide page 16
switch baud_rate
case 9600
baud_rate_code = obj.BAUD_9600;
case 14400
baud_rate_code = obj.BAUD_14400;
case 19200
baud_rate_code = obj.BAUD_19200;
case 38400
baud_rate_code = obj.BAUD_38400;
case 57600
baud_rate_code = obj.BAUD_57600;
case 115200
baud_rate_code = obj.BAUD_115200;
case 921600
baud_rate_code = obj.BAUD_921600;
case 230400
baud_rate_code = obj.BAUD_230400;
otherwise
fprintf('ERROR AuroraDriver::setBaudRate - Invalid baud rate %d\n', baud_rate);
return
end
obj.COMM(baud_rate_code,'0','0','0','0');
pause(1);
set(obj.serial_port, 'BaudRate', baud_rate);
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% DEVICE CONFIGURATION %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function init(obj)
%
% init()
%
% Initiate the Aurora SCU. This needs to be performed right after
% opening the serial port, for enabling all other functions.
obj.INIT();
obj.device_init = 1;
end
function startTracking(obj)
%
% startTracking()
%
% Puts the Aurora SCU into Tracking mode. This enables the position
% reading functions, but disables configuration functions. For
% further information, reffer to the Aurora_API_Guide page 3
obj.TSTART(obj.TRACKING_OPTION_RESET_COUNTER);
end
function stopTracking(obj)
%
% stopTracking()
%
% Puts the Aurora SCU back into Setup mode
obj.TSTOP();
end
function detectAndAssignPortHandles(obj)
%
% detectAndAssignPortHandles()
%
% Retrieves the list of all available Port Handles, with their ID
% and Status, and initialize the port_handles member variable
reply = obj.PHSR(obj.PHSR_HANDLES_ALL);
obj.n_port_handles = hex2dec(reply(1:2));
for i_port_handle = 1:obj.n_port_handles
s = 3 + 5*(i_port_handle - 1);
id = reply(s:s+1);
status = reply(s+2:s+4);
if(i_port_handle == 1)
obj.port_handles = PortHandle(id, status);
else
obj.port_handles(1,i_port_handle) = PortHandle(id, status);
end
end
end
function updatePortHandleStatusAll(obj)
%
% updatePortHandleStatusAll()
%
% Query the Aurora SCU for the current status of all available Port
% Handles and updates the Port Handle objects that have already been
% detected.
reply = obj.PHSR(obj.PHSR_HANDLES_ALL);
n_found_port_handles = hex2dec(reply(1:2));
for i_found_port_handle = 1:n_found_port_handles
s = 3 + 5*(i_found_port_handle - 1);
id = reply(s:s+1);
status = reply(s+2:s+4);
for i_port_handle = 1:obj.n_port_handles
if(strcmp(obj.port_handles(1,i_port_handle).id, id))
obj.port_handles(1,i_port_handle).updateStatus(status);
break;
end
end
end
end
function initPortHandle(obj, port_handle_id)
%
% initPortHandle(port_handle_id)
%
% Init one Port Handle
obj.PINIT(port_handle_id);
end
function initPortHandleAll(obj)
%
% initPortHandleAll()
%
% Init all Port Handles that have already been detected and update
% their status
for i_port_handle = 1:obj.n_port_handles
obj.initPortHandle(obj.port_handles(1,i_port_handle).id);
end
obj.updatePortHandleStatusAll();
end
function enablePortHandleDynamic(obj, port_handle_id)
%
% enablePortHandleDynamic(port_handle_id)
%
% Enable one Port Handle
obj.PENA(port_handle_id, obj.TT_PRIORITY_DYNAMIC);
end
function enablePortHandleDynamicAll(obj)
%
% enablePortHandleDynamicAll()
%
% Enable all Port Handles that have already been detected and
% update their status
for i_port_handle = 1:obj.n_port_handles
obj.enablePortHandleDynamic(obj.port_handles(1,i_port_handle).id);
end
obj.updatePortHandleStatusAll();
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SENSOR READING %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function updateSensorDataAll(obj)
%
% updateSensorDataAll()
%
% Reads the current measurement of all sensors and update the
% corresponding Port Handle objects.
if(obj.device_init == 1)
% Send a BX command for reading all sensors
obj.sendCommand(sprintf('BX %s', obj.READ_OUT_OF_VOLUME_ALLOWED));
% Error checking information
start_sequence = fread(obj.serial_port, 1, 'uint16');
reply_length = fread(obj.serial_port, 1, 'uint16');
header_CRC = fread(obj.serial_port, 1, 'uint16');
% Number of available Port Handles
num_handle_reads = fread(obj.serial_port, 1, 'uint8');
for i_handle_reads = 1:num_handle_reads
% Get the Port Handle ID as a 2 character hexadecimal
handle_id = dec2hex(fread(obj.serial_port, 1, 'uint8'), 2);
% Get the Port Handle status as a 2 character hexadecimal
sensor_status = dec2hex(fread(obj.serial_port, 1, 'uint8'), 2);
% Locate the index of the current handle in the
% port_handles object array and update the sensor status
handle_index = 1;
for i_port_handle = 1:obj.n_port_handles
if(strcmp(obj.port_handles(1,i_port_handle).id, handle_id))
handle_index = i_port_handle;
obj.port_handles(1,handle_index).updateSensorStatus(sensor_status);
break;
end
end
% If the port is not disabled, read sensor data
if(strcmp(sensor_status, obj.SENSOR_STATUS_DISABLED) == 0)
% If the sensor status is valid, read its translation
% and rotation data
if(strcmp(sensor_status, obj.SENSOR_STATUS_VALID))
q0 = fread(obj.serial_port, 1, 'float32');
qX = fread(obj.serial_port, 1, 'float32');
qY = fread(obj.serial_port, 1, 'float32');
qZ = fread(obj.serial_port, 1, 'float32');
rot = [q0 qX qY qZ];
tX = fread(obj.serial_port, 1, 'float32');
tY = fread(obj.serial_port, 1, 'float32');
tZ = fread(obj.serial_port, 1, 'float32');
trans = [tX tY tZ];
error = fread(obj.serial_port, 1, 'float32');
% Update the translation and rotation of the
% corresponding Port Handle object
obj.port_handles(1,handle_index).updateTrans(trans);
obj.port_handles(1,handle_index).updateRot(rot);
obj.port_handles(1,handle_index).updateError(error);
end
% Read the handle status and frame number
handle_status = dec2hex(fread(obj.serial_port, 1, 'uint32'), 8);
frame_number = fread(obj.serial_port, 1, 'uint32');
% Update the status and frame_number of the
% corresponding Port Handle object
obj.port_handles(1,handle_index).updateStatusComplete(handle_status);
obj.port_handles(1,handle_index).updateFrameNumber(frame_number);
end
end
% More error checking information
system_status = fread(obj.serial_port, 1, 'uint16');
crc = fread(obj.serial_port, 1, 'uint16');
end
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% NEEDLE SPECIFIC FUNCTIONS %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function status = readSensorStatus(obj)
obj.updateSensorDataAll();
status = obj.port_handles(1,1).sensor_status;
end
function [angle, error] = measureTipOrientation(obj)
obj.updateSensorDataAll();
rot = obj.port_handles(1,1).rot;
[RX, RY, RZ] = quat2angle(rot);
angle = RY;
error = obj.port_handles(1,1).error;
end
function error = getError(obj)
obj.updateSensorDataAll();
status = obj.port_handles(1,1).sensor_status;
error = obj.port_handles(1,1).error;
if(strcmp(status, obj.SENSOR_STATUS_MISSING) || strcmp(status, obj.SENSOR_STATUS_DISABLED))
error = 99;
end
end
function sensor_available = isSensorAvailable(obj)
if(obj.device_init == 1)
obj.updateSensorDataAll();
status = obj.port_handles(1,1).sensor_status;
if(strcmp(status, obj.SENSOR_STATUS_MISSING) || strcmp(status, obj.SENSOR_STATUS_DISABLED))
sensor_available = 0;
else
sensor_available = 1;
end
else
sensor_available = 0;
end
end
end
% Private methods
methods (Access = public)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SERIAL COMM AUXILIAR FUNCTIONS %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function sendCommand(obj, command)
%
% sendCommand(command)
%
% This function receives a command as an entire formated string and
% sends it to the Aurora SCU. There are two formats for sending
% commands. Format 2 contains only the command, in string format.
% Format 1 contains also a CRC for error checking. For more
% information on that, check the Aurora_API_Guide page 4
if(obj.selected_command_format == obj.COMMAND_FORMAT_1)
% Option not implemented
% Format 1 should replace the ' ' character in the command
% string per a ':' character and append a CRC to the end of
% the command.
else
fprintf(obj.serial_port, command);
end
end
function reply = sendCommandAndGetReply(obj, command)
obj.sendCommand(command)
reply = fgetl(obj.serial_port);
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% API COMMANDS %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Implement the serial communication for all the API commands.
% Since all these functions are private, the arguments are never
% verified. They are assumed to be already verified by the caller.
% The replies are returned integrally and are supposed to be
% treated by the caller function.
% OBS: Matlab automatically adds the 'CR' character at the end of
% every message sent through the serial. For that reason, you
% should never append a 'CR' to the end of the commands.
function reply = APIREV(obj)
reply = obj.sendCommandAndGetReply('APIREV ');
end
function reply = BEEP(obj, n_beep)
reply = obj.sendCommandAndGetReply(sprintf('BEEP %s', n_beep));
end
function [reply_body, error_checking] = BX(obj, reply_option)
obj.sendCommand(sprintf('BX %s', reply_option));
start_sequence = fread(obj.serial_port, 1, 'uint16');
reply_length = fread(obj.serial_port, 1, 'uint16');
header_CRC = fread(obj.serial_port, 1, 'uint16');
reply_body = fread(obj.serial_port, reply_length, 'uint8');
crc = fread(obj.serial_port, 1, 'uint16');
% OBS: The start sequence and both CRC are being returned in
% integer format. They can be visualized as hex using 'dec2hex'
error_checking = [start_sequence; header_CRC; crc];
end
function reply = COMM(obj, baud_rate, data_bits, parity, stop_bits, hardware_handshaking)
reply = obj.sendCommandAndGetReply(sprintf('COMM %s%s%s%s%s', baud_rate, data_bits, parity, stop_bits, hardware_handshaking));
end
function reply = ECHO(obj, message)
reply = obj.sendCommandAndGetReply(sprintf('ECHO %s', message));
end
function reply = GET(obj, user_parameter_name)
reply = obj.sendCommandAndGetReply(sprintf('GET %s', user_parameter_name));
end
function reply = INIT(obj)
reply = obj.sendCommandAndGetReply('INIT ');
end
function reply = LED(obj, port_handle, led_number, state)
reply = obj.sendCommandAndGetReply(sprintf('LED %s%s%s', port_handle, led_number, state));
end
function reply = PDIS(obj, port_handle)
reply = obj.sendCommandAndGetReply(sprintf('PDIS %s', port_handle));
end
function reply = PENA(obj, port_handle, tool_tracking_priority)
reply = obj.sendCommandAndGetReply(sprintf('PENA %s%s', port_handle, tool_tracking_priority));
end
function reply = PHF(obj, port_handle)
reply = obj.sendCommandAndGetReply(sprintf('PHF %s', port_handle));
end
function reply = PHINF(obj, port_handle, reply_option)
reply = obj.sendCommandAndGetReply(sprintf('PHINF %s%s', port_handle, reply_option));
end
function reply = PHSR(obj, reply_option)
reply = obj.sendCommandAndGetReply(sprintf('PHSR %s', reply_option));
end
function reply = PINIT(obj, port_handle)
reply = obj.sendCommandAndGetReply(sprintf('PINIT %s', port_handle));
end
function reply = PPRD(obj, port_handle, srom_device_address)
reply = obj.sendCommandAndGetReply(sprintf('PPRD %s%s', port_handle, srom_device_address));
end
function reply = PPWR(obj, port_handle, srom_device_address, srom_device_data)
reply = obj.sendCommandAndGetReply(sprintf('PPWR %s%s%s', port_handle, srom_device_address, srom_device_data));
end
function reply = PSEL(obj, port_handle, tool_srom_device_id)
reply = obj.sendCommandAndGetReply(sprintf('PSEL %s%s', port_handle, tool_srom_device_id));
end
function reply = PSOUT(obj, port_handle, gpio_1_state, gpio_2_state, gpio_3_state)
reply = obj.sendCommandAndGetReply(sprintf('PSOUT %s%s%s%s', port_handle, gpio_1_state, gpio_2_state, gpio_3_state));
end
function reply = PSRCH(obj, port_handle)
reply = obj.sendCommandAndGetReply(sprintf('PSRCH %s', port_handle));
end
function reply = PURD(obj, port_handle, user_srom_device_address)
reply = obj.sendCommandAndGetReply(sprintf('PURD %s%s', port_handle, user_srom_device_address));
end
function reply = PUWR(obj, port_handle, user_srom_device_address, user_srom_device_data)
reply = obj.sendCommandAndGetReply(sprintf('PUWR %s%s%s', port_handle, user_srom_device_address, user_srom_device_data));
end
function reply = PVWR(obj, port_handle, start_address, tool_definition_data)
reply = obj.sendCommandAndGetReply(sprintf('PUWR %s%s%s', port_handle, start_address, tool_definition_data));
end
function reply = RESET(obj, reset_option)
reply = obj.sendCommandAndGetReply(sprintf('RESET %s', reset_option));
end
function reply = SFLIST(obj, reply_option)
reply = obj.sendCommandAndGetReply(sprintf('SFLIST %s', reply_option));
end
function reply = TSTART(obj, reply_option)
reply = obj.sendCommandAndGetReply(sprintf('TSTART %s', reply_option));
end
function reply = TSTOP(obj)
reply = obj.sendCommandAndGetReply('TSTOP ');
end
function reply = TTCFG(obj, port_handle)
reply = obj.sendCommandAndGetReply(sprintf('TTCFG %s', port_handle));
end
function reply = TX(obj, reply_option)
reply = obj.sendCommandAndGetReply(sprintf('TX %s', reply_option));
end
function reply = VER(obj, reply_option)
reply = obj.sendCommandAndGetReply(sprintf('VER %s', reply_option));
end
function reply = VSEL(obj, volume_number)
reply = obj.sendCommandAndGetReply(sprintf('VSEL %s', volume_number));
end
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% DESTRUCTOR %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
methods
function delete(obj)
%
% delete()
%
% "Maybe I should send some cleanup commands to the Aurora SCU
% before closing the program." - Geraldes A.A.
% Possible commands are:
% - PDIS for the Port Handles that have been enabled
% - PHF for the Port Handles that have been initialized
% - RESET
if(strcmp(obj.serial_port.Status, 'open'))
obj.RESET(obj.RESET_SOFT);
pause(3);
obj.closeSerialPort();
end
delete(obj.serial_port);
end
end
end