-
Notifications
You must be signed in to change notification settings - Fork 10
/
ntcanopen.c
633 lines (550 loc) · 21.8 KB
/
ntcanopen.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
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
628
629
630
631
632
633
/* -*- mode: C; c-basic-offset: 4 -*- */
/* ex: set shiftwidth=4 tabstop=4 expandtab: */
/*
* Copyright (c) 2008, Georgia Tech Research Corporation
* All rights reserved.
*
* Author(s): Neil T. Dantam <[email protected]>
* Georgia Tech Humanoid Robotics Lab
* Under Direction of Prof. Mike Stilman <[email protected]>
*
*
* This file is provided under the following "BSD-style" License:
*
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
/**
* \file ntcanopen.c
*
* \brief CANopen implementation using esd's NTCAN API
*
* \author Neil Dantam
* \author Can Erdogan (bug fixes)
*
* \bug AMC servo drives require expedited SDO reads to have a full
* 8-byte data portion. We must accomodate.
*/
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <ntcan.h>
#include <assert.h>
#include <errno.h>
#include "ntcanopen.h"
extern int verbosity;
void canOpenTranslateSDO( CMSG *dst, const sdo_msg_t *src, const int is_response ) {
assert( src->length <= 4 );
// Set the message ID and the length
dst->id = (is_response ? 0x580 : 0x600 ) + src->node;
dst->len = src->length + 4; // 4 due to "len" (1), "msg_lost" (1) and "reserved" (2) fields
//dst->len = 8;
// Set the data
dst->data[0] = src->command;
dst->data[1] = src->index & 0xFF;
dst->data[2] = (src->index >> 8) & 0xFF;
dst->data[3] = src->subindex;
memcpy( &(dst->data[4]), &(src->data[0]), src->length );
// Reset the rest of the data that is not filled
bzero( &(dst->data[ 4 + src->length ]), 4 - src->length );
fprintf(stderr, "CMSG data: {");
size_t i = 0;
for(i = 0; i < 8; i++)
fprintf(stderr, "%x\t", dst->data[i]);
fprintf(stderr, "}\n");
}
// NOTE: Does this translation stand correct if the dst message does not
// use the entire data?
void canOpenTranslateCAN( sdo_msg_t *dst, const CMSG *src, const int is_request ) {
assert( src->len <= 8 );
dst->node = src->id - (is_request ? 0x600 : 0x580);
dst->length = src->len - 4;
dst->command = src->data[0];
dst->index = src->data[1] + (src->data[2] << 8);
dst->subindex = src->data[3];
memcpy( &(dst->data[0]), &(src->data[4]), dst->length );
bzero( &(dst->data[ dst->length ]), 4 - dst->length );
}
NTCAN_RESULT canOpenIdAddSDOResponse( NTCAN_HANDLE h, const uint8_t node ) {
return canIdAdd(h, CANOPEN_SDO_RESP_ID( node ) ) ;
}
NTCAN_RESULT canOpenIdDeleteSDOResponse( NTCAN_HANDLE h, const uint8_t node ) {
return canIdDelete(h, CANOPEN_SDO_RESP_ID( node ) ) ;
}
// TODO: robotiq rejects it when message size is smaller but the msg.len is hardcoded to 8
// FIXED: The length field of the CMSG is already set correctly in the canOpenTranslateSDO call
NTCAN_RESULT canOpenWriteSDO( const NTCAN_HANDLE h, const sdo_msg_t *sdomsg ) {
// Create the can message and set the sdo message in its data field
CMSG msg;
canOpenTranslateSDO( &msg, sdomsg, 0);
if(sdomsg->is_amc == 1)
msg.len = 8; // AMC sucks and barfs if msg isn't the full 8 bytes - see fixed
// Write the CMSG
int32_t num = 1;
NTCAN_RESULT writeResult = canWrite( h, &msg, &num, NULL );
if(writeResult != NTCAN_SUCCESS)
fprintf(stderr, "canOpenWriteSDO: Failed at write\n");
return writeResult;
}
// Waits to read a message
NTCAN_RESULT canOpenWaitSDO( const NTCAN_HANDLE h, sdo_msg_t *sdomsg ) {
CMSG msg;
NTCAN_RESULT ntr;
uint32_t num = 1;
do{
ntr = canRead(h, &msg, &num, NULL );
if( ntr != NTCAN_SUCCESS ) return ntr;
}while( msg.id != CANOPEN_SDO_RESP_ID( sdomsg->node ) );
if( sdomsg )
canOpenTranslateCAN( sdomsg, &msg, 0 );
if(ntr != NTCAN_SUCCESS)
fprintf(stderr, "canOpenWaitSDO: Failed at read\n");
return ntr;
}
NTCAN_RESULT canOpenSDOWriteWait( const NTCAN_HANDLE h, const sdo_msg_t *req,
sdo_msg_t *resp ) {
NTCAN_RESULT r = canOpenWriteSDO( h, req );
if( r != NTCAN_SUCCESS ) return r;
if( ! resp ) {
sdo_msg_t m;
m.node = req->node;
return canOpenWaitSDO( h, &m );
}
resp->node = req->node;
return canOpenWaitSDO( h, resp );
}
// TODO: the nodatalength (2nd param to canOpenCommand) is set to 0 by default.
// it should instead use the length parameter in sdo
// NOTE: Assumes that the message is expedited. Problem?
// FIXED: Using the length field in sdo and the maximum defined size, nodatalength
// is computed.
static void put_sdo_dl_args( sdo_msg_t *sdo, uint8_t node,
uint16_t index, uint8_t subindex ) {
// Sanity check for the length of the sdo
if(sdo->is_amc != 1) assert((sdo->length <= MAX_SDO_DATA_LENGTH) && "Infeasible SDO length");
// Set the various command fields in sdo assuming the message is expedited
canopen_command_spec_t ccs = CANOPEN_EX_DL; // command specification
// uint8_t nodata_len = 0;
uint8_t nodata_len = MAX_SDO_DATA_LENGTH - sdo->length;
fprintf(stderr, "sdo->length: %lu, max: %lu\n", sdo->length, MAX_SDO_DATA_LENGTH);
fprintf(stderr, "is_amc: %u\n", sdo->is_amc);
uint8_t is_expedited = 1;
// uint8_t is_len_in_command = 0;
uint8_t is_len_in_command = 1;
if(sdo->is_amc == 1) {
is_len_in_command = 0;
nodata_len = 0;
}
sdo->command = canOpenCommand(ccs, nodata_len, is_expedited, is_len_in_command);
// Set the rest of the information
sdo->node = node;
sdo->index = index;
sdo->subindex = subindex;
}
static void put_sdo_ul_args( sdo_msg_t *sdo, uint8_t node,
uint16_t index, uint8_t subindex ) {
sdo->command = canOpenCommand( CANOPEN_EX_UL, 0, 1, 0 );
sdo->node = node;
sdo->index = index;
sdo->subindex = subindex;
sdo->length = 0;
}
NTCAN_RESULT canOpenSDOWriteWait_dl_u8( NTCAN_HANDLE h, uint8_t *rcmd,
uint8_t node,
uint16_t index, uint8_t subindex,
uint8_t value) {
return canOpenSDOWriteWait_dl_u8_AMC(h, rcmd, node, index, subindex, value, 0);
}
// downloads a 8 byte message - the highest call in this class
NTCAN_RESULT canOpenSDOWriteWait_dl_u8_AMC( NTCAN_HANDLE h, uint8_t *rcmd,
uint8_t node,
uint16_t index, uint8_t subindex,
uint8_t value, uint8_t is_amc) {
fprintf(stderr, "Hello world!\n");
printf("Hello world!\n"); fflush(stdout);
// Prepare the message with the given arguments
NTCAN_RESULT ntr;
sdo_msg_t msg, rmsg;
msg.is_amc = is_amc;
canOpenPut_uint8( &msg, value );
put_sdo_dl_args( &msg, node, index, subindex );
// Print the command
fprintf(stderr, "canOpenSDOWriteWait_dl_u8: command: %X\n", msg.command);
// Send the message and return the result
ntr = canOpenSDOWriteWait( h, &msg, &rmsg );
if( rcmd ) *rcmd = rmsg.command;
return ntr;
}
NTCAN_RESULT canOpenSDOWriteWait_dl_u16( NTCAN_HANDLE h, uint8_t *rcmd,
uint8_t node,
uint16_t index, uint8_t subindex,
uint16_t value) {
return canOpenSDOWriteWait_dl_u16_AMC(h, rcmd, node, index, subindex, value, 0);
}
NTCAN_RESULT canOpenSDOWriteWait_dl_u16_AMC( NTCAN_HANDLE h, uint8_t *rcmd,
uint8_t node,
uint16_t index, uint8_t subindex,
uint16_t value, uint8_t is_amc) {
NTCAN_RESULT ntr;
sdo_msg_t msg, rmsg;
msg.is_amc = is_amc;
put_sdo_dl_args( &msg, node, index, subindex );
canOpenPut_uint16( &msg, value );
ntr = canOpenSDOWriteWait( h, &msg, &rmsg );
if( rcmd ) *rcmd = rmsg.command;
return ntr;
}
NTCAN_RESULT canOpenSDOWriteWait_dl_u32( NTCAN_HANDLE h, uint8_t *rcmd,
uint8_t node,
uint16_t index, uint8_t subindex,
uint32_t value) {
return canOpenSDOWriteWait_dl_u32_AMC(h, rcmd, node, index, subindex, value, 0);
}
NTCAN_RESULT canOpenSDOWriteWait_dl_u32_AMC( NTCAN_HANDLE h, uint8_t *rcmd,
uint8_t node,
uint16_t index, uint8_t subindex,
uint32_t value, uint8_t is_amc) {
NTCAN_RESULT ntr;
sdo_msg_t msg, rmsg;
msg.is_amc = is_amc;
put_sdo_dl_args( &msg, node, index, subindex );
canOpenPut_uint32( &msg, value );
ntr = canOpenSDOWriteWait( h, &msg, &rmsg );
if( rcmd ) *rcmd = rmsg.command;
return ntr;
}
NTCAN_RESULT canOpenSDOWriteWait_dl_i32( NTCAN_HANDLE h, uint8_t *rcmd,
uint8_t node,
uint16_t index, uint8_t subindex,
int32_t value) {
return canOpenSDOWriteWait_dl_i32_AMC(h, rcmd, node, index, subindex, value, 0);
}
NTCAN_RESULT canOpenSDOWriteWait_dl_i32_AMC( NTCAN_HANDLE h, uint8_t *rcmd,
uint8_t node,
uint16_t index, uint8_t subindex,
int32_t value, uint8_t is_amc) {
NTCAN_RESULT ntr;
sdo_msg_t msg, rmsg;
msg.is_amc = is_amc;
put_sdo_dl_args( &msg, node, index, subindex );
canOpenPut_int32( &msg, value );
ntr = canOpenSDOWriteWait( h, &msg, &rmsg );
if( rcmd ) *rcmd = rmsg.command;
return ntr;
}
NTCAN_RESULT canOpenSDOWriteWait_ul_u8( NTCAN_HANDLE h, uint8_t *rcmd,
uint8_t *value, uint8_t node,
uint16_t index, uint8_t subindex ){
NTCAN_RESULT ntr;
sdo_msg_t msg, rmsg;
put_sdo_ul_args( &msg, node, index, subindex );
ntr = canOpenSDOWriteWait( h, &msg, &rmsg );
if( rcmd ) *rcmd = rmsg.command;
if( value ) *value = canOpenGet_uint8( &rmsg );
return ntr;
}
// TODO: AMC fails at this point after allowing variable length data
NTCAN_RESULT canOpenSDOWriteWait_ul_u16( NTCAN_HANDLE h, uint8_t *rcmd,
uint16_t *value, uint8_t node,
uint16_t index, uint8_t subindex ){
return canOpenSDOWriteWait_ul_u16_AMC(h, rcmd, value, node, index, subindex, 0);
}
// All bad hacks: blame can erdogan
NTCAN_RESULT canOpenSDOWriteWait_ul_u16_AMC( NTCAN_HANDLE h, uint8_t *rcmd,
uint16_t *value, uint8_t node,
uint16_t index, uint8_t subindex,
uint8_t is_amc ){
NTCAN_RESULT ntr;
sdo_msg_t msg, rmsg;
// Set the is_amc flag
msg.is_amc = is_amc;
// Write the data and read the return message
put_sdo_ul_args( &msg, node, index, subindex );
ntr = canOpenSDOWriteWait( h, &msg, &rmsg );
// Read the value from the return message
// Note that the rcmd is the first byte of the SDO package.
if( rcmd ) *rcmd = rmsg.command;
if( value ) *value = canOpenGet_uint16( &rmsg );
fprintf(stderr, "canOpenSDOWriteWait_ul_u16: returning %u for result\n", ntr);
return ntr;
}
NTCAN_RESULT canOpenSDOWriteWait_ul_u32( NTCAN_HANDLE h, uint8_t *rcmd,
uint32_t *value, uint8_t node,
uint16_t index, uint8_t subindex ){
return canOpenSDOWriteWait_ul_u32_AMC(h, rcmd, value, node, index, subindex, 0);
}
NTCAN_RESULT canOpenSDOWriteWait_ul_u32_AMC( NTCAN_HANDLE h, uint8_t *rcmd,
uint32_t *value, uint8_t node,
uint16_t index, uint8_t subindex, uint8_t is_amc ){
NTCAN_RESULT ntr;
sdo_msg_t msg, rmsg;
msg.is_amc = is_amc;
put_sdo_ul_args( &msg, node, index, subindex );
ntr = canOpenSDOWriteWait( h, &msg, &rmsg );
if( rcmd ) *rcmd = rmsg.command;
if( value ) *value = canOpenGet_uint32( &rmsg );
return ntr;
}
NTCAN_RESULT canOpenSDOWriteWait_ul_i32( NTCAN_HANDLE h, uint8_t *rcmd,
int32_t *value, uint8_t node,
uint16_t index, uint8_t subindex ){
return canOpenSDOWriteWait_ul_i32_AMC(h, rcmd, value, node, index, subindex, 0);
}
NTCAN_RESULT canOpenSDOWriteWait_ul_i32_AMC( NTCAN_HANDLE h, uint8_t *rcmd,
int32_t *value, uint8_t node,
uint16_t index, uint8_t subindex, uint8_t is_amc){
NTCAN_RESULT ntr;
sdo_msg_t msg, rmsg;
msg.is_amc = is_amc;
put_sdo_ul_args( &msg, node, index, subindex );
ntr = canOpenSDOWriteWait( h, &msg, &rmsg );
if( rcmd ) *rcmd = rmsg.command;
if( value ) *value = canOpenGet_int32( &rmsg );
return ntr;
}
void canOpenDumpSDO( const sdo_msg_t *sdo ) {
printf( "%02x.%02x[%04x.%02x] ", sdo->node, sdo->command, sdo->index, sdo->subindex);
int i;
for( i = 0; i < sdo->length; i++ )
printf("%02x:", sdo->data[i] );
}
uint8_t canOpenCommand( const canopen_command_spec_t command_spec,
const uint8_t nodata_len,
const uint8_t is_expedited,
const uint8_t is_len_in_cmd ) {
fprintf(stderr, "nodata_len: %lu, is_expedited: %lu, is_len_in_command: %lu\n", nodata_len, is_expedited, is_len_in_cmd);
// Sanity checks
assert( nodata_len <= 3 );
assert( (is_expedited && is_len_in_cmd) || ! nodata_len );
// Create the command by setting the ccs, n, e and s fields
// NOTE: The reserved field is set to 0 by default.
uint8_t c = 0;
c |= is_len_in_cmd?1:0; // s
c |= (is_expedited?1:0) << 1; // e
c |= (nodata_len & 0x3) << 2; // n
c |= (command_spec & 0x7) << 5; // ccs
return c;
}
// Name change from s to sdo to be same as put_sdo_dl_args
void canOpenPut_uint8(sdo_msg_t *sdo, uint8_t d) {
sdo->length = 1;
sdo->data[0] = d ;
bzero( &(sdo->data[1]), 3);
}
uint8_t canOpenGet_uint8(sdo_msg_t *s) {
assert( s->length >= 1 );
uint8_t d = 0;
d |= s->data[0];
return d;
}
void canOpenPut_uint16(sdo_msg_t *s, uint16_t d) {
s->length = 2;
s->data[0] = d & 0xff;
s->data[1] = (d >> 8) & 0xff;
bzero( &(s->data[2]), 2);
}
uint16_t canOpenGet_uint16(sdo_msg_t *s) {
assert( s->length >= 2 );
uint16_t d = 0;
d |= s->data[0];
d |= (s->data[1] << 8);
return d;
}
void canOpenPut_int16(sdo_msg_t *s, int16_t d) {
s->length = 2;
s->data[0] = d & 0xff;
s->data[1] = (d >> 8) & 0xff;
bzero( &(s->data[2]), 2);
}
int16_t canOpenGet_int16(sdo_msg_t *s) {
assert( s->length >= 2 );
int16_t d = 0;
d |= s->data[0];
d |= (s->data[1] << 8);
return d;
}
void canOpenPut_uint32(sdo_msg_t *s, uint32_t d) {
s->length = 4;
s->data[0] = d & 0xff;
s->data[1] = (d >> 8) & 0xff;
s->data[2] = (d >> 16) & 0xff;
s->data[3] = (d >> 24) & 0xff;
}
uint32_t canOpenGet_uint32(sdo_msg_t *s) {
assert( s->length >= 2 );
uint32_t d = 0;
d |= s->data[0];
d |= (s->data[1] << 8);
d |= (s->data[2] << 16);
d |= (s->data[3] << 24);
return d;
}
void canOpenPut_int32(sdo_msg_t *s, int32_t d) {
s->length = 2;
s->data[0] = d & 0xff;
s->data[1] = (d >> 8) & 0xff;
s->data[2] = (d >> 16) & 0xff;
s->data[3] = (d >> 24) & 0xff;
}
int32_t canOpenGet_int32(sdo_msg_t *s) {
assert( s->length >= 2 );
int32_t d = 0;
d |= s->data[0];
d |= (s->data[1] << 8);
d |= (s->data[2] << 16);
d |= (s->data[3] << 24);
return d;
}
/* int canOpenDictCompare( const void *a, const void *b ) { */
/* const canopen_dict_entry_t *aa = a, *bb = b; */
/* uint32_t u = aa->node | (aa->desc->subindex << 8 ) | (aa->desc->index << 16); */
/* uint32_t v = bb->node | (bb->desc->subindex << 8 ) | (bb->desc->index << 16); */
/* if( u == v ) return 0; */
/* if( u > v ) return 1; */
/* if( u < v ) return -1; */
/* assert(0); */
/* } */
/* void canOpenDictInit( canopen_dict_t *dict, */
/* canopen_dict_entry_t *entries, size_t count ) { */
/* assert( */
/* ({ */
/* int r = 1, i; */
/* for( i = 0; i < count; i ++ ) { */
/* r = r && ( entries[i].desc != NULL ); */
/* r = r && ( entries[i].data != NULL ); */
/* }; */
/* r; */
/* }) ); */
/* qsort( entries, count, sizeof( canopen_dict_entry_t ), canOpenDictCompare ); */
/* dict->entries = entries; */
/* dict->entry_count = count; */
/* } */
/* static canopen_dict_entry_t *canOpenDictLookup( canopen_dict_t *dict, uint8_t node, */
/* uint16_t index, uint8_t subindex ) { */
/* canopen_dict_entry_t kent; */
/* sdo_desc_t kdesc; */
/* kent.desc = &kdesc; */
/* kent.node = node; */
/* kdesc.index = index; */
/* kdesc.subindex = subindex; */
/* return bsearch(&kent, dict->entries, */
/* dict->entry_count, sizeof( canopen_dict_entry_t ), */
/* canOpenDictCompare ); */
/* } */
/* static void canOpenDictDataCopy( sdo_msg_data_t *dst, sdo_msg_data_t *src, */
/* canopen_datatype_t type ) { */
/* switch( type ) { */
/* case CANOPEN_UINT16: */
/* dst->u16 = src->u16; */
/* break; */
/* case CANOPEN_UINT32: */
/* dst->u32 = src->u32; */
/* break; */
/* case CANOPEN_INT16: */
/* dst->i16 = src->i16; */
/* break; */
/* case CANOPEN_INT32: */
/* dst->i32 = src->i32; */
/* break; */
/* default: */
/* assert(0); */
/* } */
/* } */
/* int canOpenDictRead( canopen_dict_t *dict, */
/* sdo_msg_data_t *data, struct timespec *modtime, */
/* uint8_t node, uint16_t index, uint8_t subindex ) { */
/* canopen_dict_entry_t *pent = canOpenDictLookup( dict, node, index, subindex ); */
/* if( ! pent ) return -1; */
/* canOpenDictDataCopy( data, pent->data, pent->desc->type ); */
/* if( modtime && pent->modtime ) */
/* memcpy( modtime, pent->modtime, sizeof( struct timespec ) ); */
/* return 0; */
/* } */
/* int canOpenDictWrite( canopen_dict_t *dict, */
/* uint8_t node, uint16_t index, uint8_t subindex, */
/* sdo_msg_data_t *data, struct timespec *modtime */
/* ) { */
/* canopen_dict_entry_t *pent = canOpenDictLookup( dict, node, index, subindex ); */
/* if( ! pent ) return -1; */
/* canOpenDictDataCopy( pent->data, data, pent->desc->type ); */
/* return 0; */
/* } */
void canOpenTranslateNMT( CMSG *msg, uint8_t node, canopen_nmt_msg_t nmt_msg ) {
msg->id = 0;
msg->len = 2;
msg->data[0] = nmt_msg;
msg->data[1] = node;
}
NTCAN_RESULT canOpenWriteNMT( NTCAN_HANDLE h, uint8_t node,
canopen_nmt_msg_t nmt_msg ) {
CMSG msg;
canOpenTranslateNMT( &msg, node, nmt_msg );
int32_t num = 1;
return canWrite( h, &msg, &num, NULL );
}
const char *canResultString( int i ) {
NTCAN_RESULT ntr = i;
switch( ntr ) {
case NTCAN_SUCCESS: return "SUCCESS";
case NTCAN_RX_TIMEOUT: return "RX_TIMEOUT";
case NTCAN_TX_TIMEOUT: return "TX_TIMEOUT";
case NTCAN_TX_ERROR: return "TX_ERROR";
case NTCAN_CONTR_OFF_BUS: return "CONTR_OFF_BUS";
case NTCAN_CONTR_BUSY: return "CONTR_BUSY";
case NTCAN_CONTR_WARN: return "CONTR_WARN";
case NTCAN_NO_ID_ENABLED: return "NO_ID_ENABLED";
case NTCAN_ID_ALREADY_ENABLED: return "ID_ALREADY_ENABLED";
case NTCAN_INVALID_FIRMWARE: return "INVALID_FIRMWARE";
case NTCAN_MESSAGE_LOST: return "MESSAGE_LOST";
case NTCAN_INVALID_HARDWARE: return "INVALID_HARDWARE";
case NTCAN_PENDING_WRITE: return "PENDING_WRITE";
case NTCAN_PENDING_READ: return "PENDING_READ";
case NTCAN_INVALID_DRIVER: return "INVALID_DRIVER";
case NTCAN_SOCK_CONN_TIMEOUT: return "SOCK_CONN_TIMEOUT";
case NTCAN_SOCK_CMD_TIMEOUT: return "SOCK_CMD_TIMEOUT";
case NTCAN_SOCK_HOST_NOT_FOUND: return "SOCK_HOST_NOT_FOUND";
case NTCAN_INVALID_PARAMETER: return "INVALID_PARAMETER";
case NTCAN_INVALID_HANDLE: return "INVALID_HANDLE";
case NTCAN_NET_NOT_FOUND: return "NET_NOT_FOUND";
case NTCAN_INSUFFICIENT_RESOURCES: return "INSUFFICIENT_RESOURCES";
case NTCAN_OPERATION_ABORTED: return "OPERATION_ABORTED";
case NTCAN_WRONG_DEVICE_STATE: return "WRONG_DEVICE_STATE";
case NTCAN_HANDLE_FORCED_CLOSE: return "HANDLE_FORCED_CLOSE";
case NTCAN_NOT_IMPLEMENTED: return "NOT_IMPLEMENTED";
case NTCAN_NOT_SUPPORTED: return "NOT_SUPPORTED";
case NTCAN_CONTR_ERR_PASSIVE: return "CONTR_ERR_PASSIVE";
default: return "unknown";
}
}
int32_t canOpenDecode_int32( uint8_t *p ) {
return
p[0] |
p[1] << 8 |
p[2] << 16 |
p[3] << 24 ;
}