forked from CANopenNode/CANopenNode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_project.xml
More file actions
960 lines (894 loc) · 77.5 KB
/
Copy path_project.xml
File metadata and controls
960 lines (894 loc) · 77.5 KB
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
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
<?xml version="1.0"?>
<device>
<features>
<feature name="SYNC" value="1">
<label lang="en">Synchronization object (Sync)</label>
<description lang="en" URI="http://www.can-cia.org/canopen/protocol/special.html">The Sync Object is broadcast periodically by the Sync Producer.
Permissible value for SYNC is 0 or 1.</description>
<associatedObject index="1005"/>
<associatedObject index="1006"/>
<associatedObject index="1007"/>
<associatedObject index="2103"/>
<associatedObject index="2104"/>
</feature>
<feature name="Emergency" value="1">
<label lang="en">Emergency object (Emcy)</label>
<description lang="en" URI="http://www.can-cia.org/canopen/protocol/special.html">The Emergency message is triggered by the occurrence of a device internal error situation.
Permissible value for Emergency is 0 or 1.</description>
<associatedObject index="1014"/>
<associatedObject index="1015"/>
</feature>
<feature name="SDO server" value="1">
<label lang="en">Service Data Object (SDO)</label>
<description lang="en" URI="http://www.can-cia.org/canopen/protocol/sdo.html">A Service Data Object (SDO) reads from entries or writes to entries of the Object Dictionary.
SDO server is implemented on all CANopen devices.
Permissible value for SDO sever is 0 or 1.</description>
<associatedObject index="1200" indexMax="1201" indexStep="1"/>
</feature>
<feature name="SDO client" value="0">
<label lang="en">Service Data Object (SDO)</label>
<description lang="en" URI="http://www.can-cia.org/canopen/protocol/sdo.html">A Service Data Object (SDO) reads from entries or writes to entries of the Object Dictionary.
SDO client is usually a master device in a CANopen network.
Permissible value for SDO client is 0 or 1.</description>
<associatedObject index="1280" indexMax="1281" indexStep="1"/>
</feature>
<feature name="RPDO" value="4">
<label lang="en">Recive Process Data Object (RPDO)</label>
<description lang="en" URI="http://www.can-cia.org/canopen/protocol/pdo.html">Process Data Objects (PDOs) are mapped to a single CAN frame using up to 8 bytes of the data field to transmit application objects. Each PDO has a unique identifier and is transmitted by only one node, but it can be received by more than one (producer/consumer communication).
Permissible value for RPDO is 0 to 16. For larger value Max Index must be changed.</description>
<associatedObject index="1400" indexMax="140F" indexStep="1"/>
<associatedObject index="1600" indexMax="160F" indexStep="1"/>
</feature>
<feature name="TPDO" value="4">
<label lang="en">Transmit Process Data Object (TPDO)</label>
<description lang="en" URI="http://www.can-cia.org/canopen/protocol/pdo.html">Process Data Objects (PDOs) are mapped to a single CAN frame using up to 8 bytes of the data field to transmit application objects. Each PDO has a unique identifier and is transmitted by only one node, but it can be received by more than one (producer/consumer communication).
Permissible value for TPDO is 0 to 16. For larger value Max Index must be changed.</description>
<associatedObject index="1800" indexMax="180F" indexStep="1"/>
<associatedObject index="1A00" indexMax="1A0F" indexStep="1"/>
</feature>
<feature name="NMT master" value="0">
<label lang="en">NMT master</label>
<description lang="en">NMT master can send CANopen NMT command, which can start, stop or reset nodes.</description>
</feature>
<feature name="Trace" value="0">
<label lang="en">Trace</label>
<description lang="en">Trace is used for recording variables.</description>
<associatedObject index="2301" indexMax="2320" indexStep="1"/>
<associatedObject index="2400"/>
<associatedObject index="2401" indexMax="2420" indexStep="1"/>
</feature>
</features>
<CANopenObjectList>
<CANopenObject index="1000" name="Device type" objectType="7" memoryType="ROM" dataType="07" accessType="ro" PDOmapping="no" defaultValue="0x00000000">
<label lang="en">Device type</label>
<description lang="en">bit 0-15: Device profile number
bit 16-31: Additional information</description>
</CANopenObject>
<CANopenObject index="1001" name="Error register" objectType="7" memoryType="RAM" dataType="05" accessType="ro" PDOmapping="optional" defaultValue="0">
<label lang="en">Error register</label>
<description lang="en">bit 0: generic error
bit 1: current
bit 2: voltage
bit 3: temperature
bit 4: communication error (overrun, error state)
bit 5: device profile specific
bit 6: Reserved (always 0)
bit 7: manufacturer specific</description>
</CANopenObject>
<CANopenObject index="1002" name="Manufacturer status register" objectType="7" memoryType="RAM" dataType="07" accessType="ro" PDOmapping="optional" defaultValue="0">
<label lang="en">Manufacturer status register</label>
<description lang="en">bit 0-31: Not used by stack (available for user)</description>
</CANopenObject>
<CANopenObject index="1003" name="Pre-defined error field" objectType="8" subNumber="9" memoryType="RAM" dataType="07" accessType="ro" PDOmapping="no" accessFunctionName="CO_ODF_1003">
<label lang="en">Pre-defined error field</label>
<description lang="en">Number of Errors
bit 0-7: Zero can be written to erase error history
Standard Error Field
bit 0-15: Error code as transmited in the Emergency object
bit 16-31: Manufacturer specific additional information</description>
<CANopenSubObject subIndex="00" name="Number of errors" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="01" name="Standard error field" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="02" name="Standard error field" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="03" name="Standard error field" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="04" name="Standard error field" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="05" name="Standard error field" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="06" name="Standard error field" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="07" name="Standard error field" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="08" name="Standard error field" objectType="7" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="1005" name="COB-ID SYNC message" objectType="7" memoryType="ROM" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000080" accessFunctionName="CO_ODF_1005">
<label lang="en">COB-ID SYNC message</label>
<description lang="en">bit 0-10: COB-ID for SYNC object
bit 11-29: set to 0
bit 30: 1(0) - node generates (does NOT generate) SYNC object
bit 31: set to 0</description>
</CANopenObject>
<CANopenObject index="1006" name="Communication cycle period" objectType="7" memoryType="ROM" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0" accessFunctionName="CO_ODF_1006">
<label lang="en">Communication cycle period</label>
<description lang="en">bit 0-31: period of SYNC transmission in µs (0 = no transmission, no checking)</description>
</CANopenObject>
<CANopenObject index="1007" name="Synchronous window length" objectType="7" memoryType="ROM" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0">
<label lang="en">Synchronous window length</label>
<description lang="en">bit 0-31: window leghth after SYNC when PDOS must be transmited in µs, (0 = not used)</description>
</CANopenObject>
<CANopenObject index="1008" name="Manufacturer device name" objectType="7" memoryType="ROM" dataType="09" accessType="const" PDOmapping="no" defaultValue="CANopenNode">
<label lang="en">Manufacturer device name</label>
<description lang="en">Name of the manufacturer as string</description>
</CANopenObject>
<CANopenObject index="1009" name="Manufacturer hardware version" objectType="7" memoryType="ROM" dataType="09" accessType="const" PDOmapping="no" defaultValue="3.00">
<label lang="en">Manufacturer hardware version</label>
<description lang="en">Name of the hardware version as string</description>
</CANopenObject>
<CANopenObject index="100A" name="Manufacturer software version" objectType="7" memoryType="ROM" dataType="09" accessType="const" PDOmapping="no" defaultValue="3.00">
<label lang="en">Manufacturer software version</label>
<description lang="en">Name of the software version as string.</description>
</CANopenObject>
<CANopenObject index="1010" name="Store parameters" objectType="8" subNumber="2" memoryType="RAM" dataType="07" accessType="rw" PDOmapping="no" accessFunctionName="CO_ODF_1010">
<label lang="en">Store parameters</label>
<description lang="en">Writing value 0x65766173 ('s','a','v','e' from LSB to MSB) into this location stores all ROM variables into EEPROM.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="1"/>
<CANopenSubObject subIndex="01" name="save all parameters" objectType="7" defaultValue="0x00000003"/>
</CANopenObject>
<CANopenObject index="1011" name="Restore default parameters" objectType="8" subNumber="2" memoryType="RAM" dataType="07" accessType="rw" PDOmapping="no" accessFunctionName="CO_ODF_1011">
<label lang="en">Restore default parameters</label>
<description lang="en">Writing value 0x64616F6C ('l','o','a','d' from LSB to MSB) into this location restores all ROM and EEPROM variables after reset. (After reset read form EEPROM is not performed, so default values are used.)</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="1"/>
<CANopenSubObject subIndex="01" name="restore all default parameters" objectType="7" defaultValue="0x00000001"/>
</CANopenObject>
<CANopenObject index="1014" name="COB-ID EMCY" objectType="7" memoryType="ROM" dataType="07" accessType="ro" PDOmapping="no" defaultValue="$NODEID+0x80" accessFunctionName="CO_ODF_1014">
<label lang="en">COB-ID emergency message</label>
<description lang="en">bit 0-10: COB-ID
bit 11-30: set to 0 for 11 bit COB-ID
bit 31: 0(1) - node uses (does NOT use) Emergency object</description>
</CANopenObject>
<CANopenObject index="1015" name="inhibit time EMCY" objectType="7" memoryType="ROM" dataType="06" accessType="rw" PDOmapping="no" defaultValue="100">
<label lang="en">inhibit time emergency message</label>
<description lang="en">bit 0-15: Inhibit time of emergency message in 100µs</description>
</CANopenObject>
<CANopenObject index="1016" name="Consumer heartbeat time" objectType="8" subNumber="5" memoryType="ROM" dataType="07" accessType="rw" PDOmapping="no" accessFunctionName="CO_ODF_1016">
<label lang="en">Consumer heartbeat time</label>
<description lang="en">max sub-index
Consumer Heartbeat Time
bit 0-15: Heartbeat consumer time in ms (0 = node is not monitored)
bit 16-23: Node ID
bit 24-31: set to 0</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="4"/>
<CANopenSubObject subIndex="01" name="Consumer heartbeat time" objectType="7" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="02" name="Consumer heartbeat time" objectType="7" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="03" name="Consumer heartbeat time" objectType="7" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="04" name="Consumer heartbeat time" objectType="7" defaultValue="0x00000000"/>
</CANopenObject>
<CANopenObject index="1017" name="Producer heartbeat time" objectType="7" memoryType="ROM" dataType="06" accessType="rw" PDOmapping="no" defaultValue="1000">
<label lang="en">Producer heartbeat time</label>
<description lang="en">bit 0-15: Heartbeat producer time in ms (0 = disable transmission)</description>
</CANopenObject>
<CANopenObject index="1018" name="Identity" objectType="9" subNumber="5" memoryType="ROM">
<label lang="en">Identity</label>
<description lang="en">max sub-index
Vendor-ID
bit 0-31: Assigned by CiA
Product code
bit 0-31: Manufacturer specific
Revision number
bit 0-15: Minor revision num. (CANopen behavior has not changed)
bit 16-31: Major revision number (CANopen behavior has changed)
Serial number
bit 0-31: Manufacturer specific</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="4"/>
<CANopenSubObject subIndex="01" name="Vendor-ID" objectType="7" dataType="07" accessType="ro" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="02" name="Product code" objectType="7" dataType="07" accessType="ro" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="03" name="Revision number" objectType="7" dataType="07" accessType="ro" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="04" name="Serial number" objectType="7" dataType="07" accessType="ro" PDOmapping="no" defaultValue="0x00000000"/>
</CANopenObject>
<CANopenObject index="1019" name="Synchronous counter overflow value" objectType="7" memoryType="ROM" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0" accessFunctionName="CO_ODF_1019">
<label lang="en">Synchronous counter overflow value</label>
<description lang="en">If value is zero, then SYNC message is transmitted with data length 0.
If Value is from 2 to 240, then SYNC message has one data byte, which contains the counter.
Other values are reserved.</description>
</CANopenObject>
<CANopenObject index="1029" name="Error behavior" objectType="8" subNumber="7" memoryType="ROM" dataType="05" accessType="rw" PDOmapping="no">
<label lang="en">Error behavior</label>
<description lang="en">If error is detected and operating NMT state is NMT operational, this object defines behavior of the device.
Value definition for all subindexes:
0x00 - if operational, switch to NMT pre-operational
0x01 - do nothing
0x02 - switch to NMT stopped
01 - Communication error - bus off or Heartbeat consumer error.
02 - Communication other error (critical errors - see 'Error status bits') except CAN bus passive but including bus off or Heartbeat consumer.
03 - Communication passive - any communication error including CAN bus passive.
04 - Generic error (critical errors - see 'Error status bits').
05 - Device profile error - bit 5 in error register is set.
06 - Manufacturer specific error - bit 7 in error register is set.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="6"/>
<CANopenSubObject subIndex="01" name="Communication" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="02" name="Communication other" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="03" name="Communication passive" objectType="7" defaultValue="0x01"/>
<CANopenSubObject subIndex="04" name="Generic" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="05" name="Device profile" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="06" name="Manufacturer specific" objectType="7" defaultValue="0x00"/>
</CANopenObject>
<CANopenObject index="1200" name="SDO server parameter" objectType="9" subNumber="3" memoryType="ROM" accessFunctionName="CO_ODF_1200">
<label lang="en">SDO server parameter</label>
<description lang="en">0x1200 SDO server parameter
max sub-index
COB-ID client to server (Receive SDO)
bit 0-31: 0x00000600 + Node ID
COB-ID server to client (Transmit SDO)
bit 0-31: 0x00000580 + Node ID
0x1201 - 0x127F SDO server parameter
max sub-index
COB-ID client to server (Receive SDO)
bit 0-10: COB_ID
bit 11-30: Set to 0
bit 31*: 0(1) - node uses (does NOT use) SDO
COB-ID server to client (Transmit SDO)
bit 0-31: same as previous
Node-ID of the SDO client
bit 0-7: Node ID (optional)</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="2"/>
<CANopenSubObject subIndex="01" name="COB-ID client to server" objectType="7" dataType="07" accessType="ro" PDOmapping="no" defaultValue="$NODEID+0x600"/>
<CANopenSubObject subIndex="02" name="COB-ID server to client" objectType="7" dataType="07" accessType="ro" PDOmapping="no" defaultValue="$NODEID+0x580"/>
</CANopenObject>
<CANopenObject index="1280" name="SDO client parameter" objectType="9" subNumber="4" memoryType="RAM" disabled="true">
<label lang="en">SDO client parameter</label>
<description lang="en">0x1280 - 0x12FF SDO client parameter
max sub-index
COB-ID client to server (Transmit SDO)
bit 0-10: COB_ID
bit 11-30: Set to 0
bit 31: 0(1) - node uses (does NOT use) SDO
COB-ID server to client (Receive SDO)
bit 0-31: same as previous
Node-ID of the SDO server
0-7: Node ID</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="3"/>
<CANopenSubObject subIndex="01" name="COB-ID client to server" objectType="7" dataType="07" accessType="rw" PDOmapping="optional" defaultValue="0"/>
<CANopenSubObject subIndex="02" name="COB-ID server to client" objectType="7" dataType="07" accessType="rw" PDOmapping="optional" defaultValue="0"/>
<CANopenSubObject subIndex="03" name="Node-ID of the SDO server" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="1400" name="RPDO communication parameter" objectType="9" subNumber="3" memoryType="ROM" accessFunctionName="CO_ODF_RPDOcom">
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="2"/>
<CANopenSubObject subIndex="01" name="COB-ID used by RPDO" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="$NODEID+0x200"/>
<CANopenSubObject subIndex="02" name="transmission type" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="255"/>
<label lang="en">RPDO communication parameter</label>
<description lang="en">0x1400 - 0x15FF RPDO communication parameter
max sub-index
COB-ID
bit 0-10: COB-ID for PDO, to change it bit 31 must be set
bit 11-29: set to 0 for 11 bit COB-ID
bit 30: 0(1) - rtr are allowed (are NOT allowed) for PDO
bit 31: 0(1) - node uses (does NOT use) PDO
Transmission type
value = 0-240: reciving is synchronous, process after next reception of SYNC object
value = 241-253: not used
value = 254: manufacturer specific
value = 255: asynchronous</description>
</CANopenObject>
<CANopenObject index="1401" name="RPDO communication parameter" objectType="9" subNumber="3" memoryType="ROM" accessFunctionName="CO_ODF_RPDOcom">
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="2"/>
<CANopenSubObject subIndex="01" name="COB-ID used by RPDO" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="$NODEID+0x300"/>
<CANopenSubObject subIndex="02" name="transmission type" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="254"/>
<label lang="en">RPDO communication parameter</label>
<description lang="en">0x1400 - 0x15FF RPDO communication parameter (see description for 0x1400)</description>
</CANopenObject>
<CANopenObject index="1402" name="RPDO communication parameter" objectType="9" subNumber="3" memoryType="ROM" accessFunctionName="CO_ODF_RPDOcom">
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="2"/>
<CANopenSubObject subIndex="01" name="COB-ID used by RPDO" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="$NODEID+0x400"/>
<CANopenSubObject subIndex="02" name="transmission type" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="254"/>
<label lang="en">RPDO communication parameter</label>
<description lang="en">0x1400 - 0x15FF RPDO communication parameter (see description for 0x1400)</description>
</CANopenObject>
<CANopenObject index="1403" name="RPDO communication parameter" objectType="9" subNumber="3" memoryType="ROM" accessFunctionName="CO_ODF_RPDOcom">
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="2"/>
<CANopenSubObject subIndex="01" name="COB-ID used by RPDO" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="$NODEID+0x500"/>
<CANopenSubObject subIndex="02" name="transmission type" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="254"/>
<label lang="en">RPDO communication parameter</label>
<description lang="en">0x1400 - 0x15FF RPDO communication parameter (see description for 0x1400)</description>
</CANopenObject>
<CANopenObject index="1404" name="RPDO communication parameter" objectType="9" subNumber="3" memoryType="ROM" accessFunctionName="CO_ODF_RPDOcom" disabled="true">
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="2"/>
<CANopenSubObject subIndex="01" name="COB-ID used by RPDO" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="1"/>
<CANopenSubObject subIndex="02" name="transmission type" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="254"/>
<label lang="en">RPDO communication parameter</label>
<description lang="en">0x1400 - 0x15FF RPDO communication parameter (see description for 0x1400)</description>
</CANopenObject>
<CANopenObject index="1600" name="RPDO mapping parameter" objectType="9" subNumber="9" memoryType="ROM" accessFunctionName="CO_ODF_RPDOmap">
<label lang="en">RPDO mapping parameter</label>
<description lang="en">0x1600 - 0x17FF RPDO mapping parameter (To change mapping, 'Number of mapped objects' must be set to 0)
Number of mapped objects
mapped object (subindex 1...8)
bit 0-7: data length in bits
bit 8-15: subindex from OD
bit 16-31: index from OD</description>
<CANopenSubObject subIndex="00" name="Number of mapped objects" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="2"/>
<CANopenSubObject subIndex="01" name="mapped object 1" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x62000108"/>
<CANopenSubObject subIndex="02" name="mapped object 2" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x62000208"/>
<CANopenSubObject subIndex="03" name="mapped object 3" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="04" name="mapped object 4" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="05" name="mapped object 5" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="06" name="mapped object 6" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="07" name="mapped object 7" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="08" name="mapped object 8" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
</CANopenObject>
<CANopenObject index="1601" name="RPDO mapping parameter" objectType="9" subNumber="9" memoryType="ROM" accessFunctionName="CO_ODF_RPDOmap">
<label lang="en">RPDO mapping parameter</label>
<description lang="en">0x1600 - 0x17FF RPDO mapping parameter (see description for 0x1600)</description>
<CANopenSubObject subIndex="00" name="Number of mapped objects" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="01" name="mapped object 1" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="02" name="mapped object 2" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="03" name="mapped object 3" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="04" name="mapped object 4" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="05" name="mapped object 5" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="06" name="mapped object 6" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="07" name="mapped object 7" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="08" name="mapped object 8" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
</CANopenObject>
<CANopenObject index="1602" name="RPDO mapping parameter" objectType="9" subNumber="9" memoryType="ROM" accessFunctionName="CO_ODF_RPDOmap">
<label lang="en">RPDO mapping parameter</label>
<description lang="en">0x1600 - 0x17FF RPDO mapping parameter (see description for 0x1600)</description>
<CANopenSubObject subIndex="00" name="Number of mapped objects" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="01" name="mapped object 1" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="02" name="mapped object 2" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="03" name="mapped object 3" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="04" name="mapped object 4" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="05" name="mapped object 5" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="06" name="mapped object 6" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="07" name="mapped object 7" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="08" name="mapped object 8" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
</CANopenObject>
<CANopenObject index="1603" name="RPDO mapping parameter" objectType="9" subNumber="9" memoryType="ROM" accessFunctionName="CO_ODF_RPDOmap">
<label lang="en">RPDO mapping parameter</label>
<description lang="en">0x1600 - 0x17FF RPDO mapping parameter (see description for 0x1600)</description>
<CANopenSubObject subIndex="00" name="Number of mapped objects" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="01" name="mapped object 1" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="02" name="mapped object 2" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="03" name="mapped object 3" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="04" name="mapped object 4" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="05" name="mapped object 5" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="06" name="mapped object 6" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="07" name="mapped object 7" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="08" name="mapped object 8" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
</CANopenObject>
<CANopenObject index="1604" name="RPDO mapping parameter" objectType="9" subNumber="9" memoryType="ROM" accessFunctionName="CO_ODF_RPDOmap" disabled="true">
<label lang="en">RPDO mapping parameter</label>
<description lang="en">0x1600 - 0x17FF RPDO mapping parameter (see description for 0x1600)</description>
<CANopenSubObject subIndex="00" name="Number of mapped objects" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="01" name="mapped object 1" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="02" name="mapped object 2" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="03" name="mapped object 3" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="04" name="mapped object 4" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="05" name="mapped object 5" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="06" name="mapped object 6" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="07" name="mapped object 7" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="08" name="mapped object 8" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
</CANopenObject>
<CANopenObject index="1800" name="TPDO communication parameter" objectType="9" subNumber="7" memoryType="ROM" accessFunctionName="CO_ODF_TPDOcom">
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="6"/>
<CANopenSubObject subIndex="01" name="COB-ID used by TPDO" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="$NODEID+0x180"/>
<CANopenSubObject subIndex="02" name="transmission type" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="255"/>
<CANopenSubObject subIndex="03" name="inhibit time" objectType="7" dataType="06" accessType="rw" PDOmapping="no" defaultValue="100"/>
<CANopenSubObject subIndex="04" name="compatibility entry" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="05" name="event timer" objectType="7" dataType="06" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="06" name="SYNC start value" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<label lang="en">TPDO communication parameter</label>
<description lang="en">0x1800 - 0x19FF TPDO communication parameter
max sub-index
COB-ID
bit 0-10: COB-ID for PDO, to change it bit 31 must be set
bit 11-29: set to 0 for 11 bit COB-ID
bit 30: 0(1) - rtr are allowed (are NOT allowed) for PDO
bit 31: 0(1) - node uses (does NOT use) PDO
Transmission type
value = 0: transmiting is synchronous, specification in device profile
value = 1-240: transmiting is synchronous after every N-th SYNC object
value = 241-251: not used
value = 252-253: Transmited only on reception of Remote Transmission Request
value = 254: manufacturer specific
value = 255: asinchronous, specification in device profile
inhibit time
bit 0-15: Minimum time between transmissions of the PDO in 100µs. Zero disables functionality.
compatibility entry
bit 0-7: Not used.
event timer
bit 0-15: Time between periodic transmissions of the PDO in ms. Zero disables functionality.
SYNC start value
value = 0: Counter of the SYNC message shall not be processed.
value = 1-240: The SYNC message with the counter value equal to this value shall be regarded as the first received SYNC message.</description>
</CANopenObject>
<CANopenObject index="1801" name="TPDO communication parameter" objectType="9" subNumber="7" memoryType="ROM" accessFunctionName="CO_ODF_TPDOcom">
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="6"/>
<CANopenSubObject subIndex="01" name="COB-ID used by TPDO" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="$NODEID+0x280"/>
<CANopenSubObject subIndex="02" name="transmission type" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="254"/>
<CANopenSubObject subIndex="03" name="inhibit time" objectType="7" dataType="06" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="04" name="compatibility entry" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="05" name="event timer" objectType="7" dataType="06" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="06" name="SYNC start value" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<label lang="en">TPDO communication parameter</label>
<description lang="en">0x1800 - 0x19FF TPDO communication parameter (see description for 0x1800)</description>
</CANopenObject>
<CANopenObject index="1802" name="TPDO communication parameter" objectType="9" subNumber="7" memoryType="ROM" accessFunctionName="CO_ODF_TPDOcom">
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="6"/>
<CANopenSubObject subIndex="01" name="COB-ID used by TPDO" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="$NODEID+0x380"/>
<CANopenSubObject subIndex="02" name="transmission type" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="254"/>
<CANopenSubObject subIndex="03" name="inhibit time" objectType="7" dataType="06" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="04" name="compatibility entry" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="05" name="event timer" objectType="7" dataType="06" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="06" name="SYNC start value" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<label lang="en">TPDO communication parameter</label>
<description lang="en">0x1800 - 0x19FF TPDO communication parameter (see description for 0x1800)</description>
</CANopenObject>
<CANopenObject index="1803" name="TPDO communication parameter" objectType="9" subNumber="7" memoryType="ROM" accessFunctionName="CO_ODF_TPDOcom">
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="6"/>
<CANopenSubObject subIndex="01" name="COB-ID used by TPDO" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="$NODEID+0x480"/>
<CANopenSubObject subIndex="02" name="transmission type" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="254"/>
<CANopenSubObject subIndex="03" name="inhibit time" objectType="7" dataType="06" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="04" name="compatibility entry" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="05" name="event timer" objectType="7" dataType="06" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="06" name="SYNC start value" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<label lang="en">TPDO communication parameter</label>
<description lang="en">0x1800 - 0x19FF TPDO communication parameter (see description for 0x1800)</description>
</CANopenObject>
<CANopenObject index="1804" name="TPDO communication parameter" objectType="9" subNumber="7" memoryType="ROM" accessFunctionName="CO_ODF_TPDOcom" disabled="true">
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="6"/>
<CANopenSubObject subIndex="01" name="COB-ID used by TPDO" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="1"/>
<CANopenSubObject subIndex="02" name="transmission type" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="254"/>
<CANopenSubObject subIndex="03" name="inhibit time" objectType="7" dataType="06" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="04" name="compatibility entry" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="05" name="event timer" objectType="7" dataType="06" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="06" name="SYNC start value" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<label lang="en">TPDO communication parameter</label>
<description lang="en">0x1800 - 0x19FF TPDO communication parameter (see description for 0x1800)</description>
</CANopenObject>
<CANopenObject index="1A00" name="TPDO mapping parameter" objectType="9" subNumber="9" memoryType="ROM" accessFunctionName="CO_ODF_TPDOmap">
<label lang="en">TPDO mapping parameter</label>
<description lang="en">0x1A00 - 0x1BFF TPDO mapping parameter. (To change mapping, 'Number of mapped objects' must be set to 0).
Number of mapped objects
mapped object (subindex 1...8)
bit 0-7: data length in bits
bit 8-15: subindex from OD
bit 16-31: index from OD</description>
<CANopenSubObject subIndex="00" name="Number of mapped objects" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="2"/>
<CANopenSubObject subIndex="01" name="mapped object 1" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x60000108"/>
<CANopenSubObject subIndex="02" name="mapped object 2" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x60000208"/>
<CANopenSubObject subIndex="03" name="mapped object 3" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="04" name="mapped object 4" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="05" name="mapped object 5" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="06" name="mapped object 6" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="07" name="mapped object 7" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="08" name="mapped object 8" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
</CANopenObject>
<CANopenObject index="1A01" name="TPDO mapping parameter" objectType="9" subNumber="9" memoryType="ROM" accessFunctionName="CO_ODF_TPDOmap">
<label lang="en">TPDO mapping parameter</label>
<description lang="en">0x1A00 - 0x1BFF TPDO mapping parameter (see description for 0x1A00)</description>
<CANopenSubObject subIndex="00" name="Number of mapped objects" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="01" name="mapped object 1" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="02" name="mapped object 2" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="03" name="mapped object 3" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="04" name="mapped object 4" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="05" name="mapped object 5" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="06" name="mapped object 6" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="07" name="mapped object 7" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="08" name="mapped object 8" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
</CANopenObject>
<CANopenObject index="1A02" name="TPDO mapping parameter" objectType="9" subNumber="9" memoryType="ROM" accessFunctionName="CO_ODF_TPDOmap">
<label lang="en">TPDO mapping parameter</label>
<description lang="en">0x1A00 - 0x1BFF TPDO mapping parameter (see description for 0x1A00)</description>
<CANopenSubObject subIndex="00" name="Number of mapped objects" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="01" name="mapped object 1" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="02" name="mapped object 2" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="03" name="mapped object 3" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="04" name="mapped object 4" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="05" name="mapped object 5" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="06" name="mapped object 6" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="07" name="mapped object 7" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="08" name="mapped object 8" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
</CANopenObject>
<CANopenObject index="1A03" name="TPDO mapping parameter" objectType="9" subNumber="9" memoryType="ROM" accessFunctionName="CO_ODF_TPDOmap">
<label lang="en">TPDO mapping parameter</label>
<description lang="en">0x1A00 - 0x1BFF TPDO mapping parameter (see description for 0x1A00)</description>
<CANopenSubObject subIndex="00" name="Number of mapped objects" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="01" name="mapped object 1" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="02" name="mapped object 2" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="03" name="mapped object 3" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="04" name="mapped object 4" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="05" name="mapped object 5" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="06" name="mapped object 6" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="07" name="mapped object 7" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="08" name="mapped object 8" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
</CANopenObject>
<CANopenObject index="1A04" name="TPDO mapping parameter" objectType="9" subNumber="9" memoryType="ROM" accessFunctionName="CO_ODF_TPDOmap" disabled="true">
<label lang="en">TPDO mapping parameter</label>
<description lang="en">0x1A00 - 0x1BFF TPDO mapping parameter (see description for 0x1A00)</description>
<CANopenSubObject subIndex="00" name="Number of mapped objects" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="01" name="mapped object 1" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="02" name="mapped object 2" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="03" name="mapped object 3" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="04" name="mapped object 4" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="05" name="mapped object 5" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="06" name="mapped object 6" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="07" name="mapped object 7" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="08" name="mapped object 8" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
</CANopenObject>
<CANopenObject index="1F80" name="NMT startup" objectType="7" memoryType="ROM" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000008">
<label lang="en">NMT Startup</label>
<description lang="en">Only bit 2 is implemented.
bit 0: 0(1) - device is not (is) NMT master
bit 1: 0(1) - if bit3=0, start explicitly assigned (all) nodes
bit 2: 0(1) - automaticaly enter (DO NOT automaticaly enter) the operational state on bootup
bit 3: 0(1) - NMT master may (may not) start nodes automatically
bit 4: 0(1) - if monitored node fails heartbeat handle that (all) node(s)
bit 5: 0(1) - flying master process not (yes) supported
bit 6: 0(1) - use bit 4 (ignore bit 4, stop all nodes)
bit 7-31: reserved, set to 0</description>
</CANopenObject>
<CANopenObject index="2100" name="Error status bits" objectType="7" memoryType="RAM" dataType="0A" accessType="ro" PDOmapping="optional" defaultValue="00 00 00 00 00 00 00 00 00 00">
<label lang="en">Error Status Bits</label>
<description lang="en">Error Status Bits indicates error conditions inside stack or inside application. Specific bit is set by CO_errorReport() function, when error occurs in program. It can be reset by CO_errorReset() function, if error is solved. Emergency message is sent on each change of any Error Status Bit. If critical bits are set, node will not be able to stay in operational state. For more information see file CO_Emergency.h.
Default error status bits are:
Communication or protocol errors from driver (informative):
00 - ERROR_NO_ERROR - Error Reset or No Error.
01 - ERROR_CAN_BUS_WARNING - CAN bus warning.
02 - ERROR_RXMSG_WRONG_LENGTH - Wrong data length of received CAN message.
03 - ERROR_RXMSG_OVERFLOW - Previous received CAN message wasn't processed yet.
04 - ERROR_RPDO_WRONG_LENGTH - Wrong data length of received PDO.
05 - ERROR_RPDO_OVERFLOW - Previous received PDO wasn't processed yet.
06 - ERROR_CAN_RX_BUS_PASSIVE - CAN receive bus is passive.
07 - ERROR_CAN_TX_BUS_PASSIVE - CAN transmit bus is passive.
Communication or protocol errors from driver (critical):
08 - ERROR_08_reserved - (reserved)
09 - ERROR_09_reserved - (reserved)
0A - ERROR_CAN_TX_BUS_OFF - CAN transmit bus is off.
0B - ERROR_CAN_RXB_OVERFLOW - CAN module receive buffer has overflowed.
0C - ERROR_CAN_TX_OVERFLOW - CAN transmit buffer has overflowed.
0D - ERROR_TPDO_OUTSIDE_WINDOW - TPDO is outside SYNC window.
0E - ERROR_CAN_CONFIGURATION_FAILED - Configuration of CAN module CAN failed (Rx or Tx).
0F - ERROR_0F_reserved - (reserved)
Communication or protocol errors (informative):
10 - ERROR_NMT_WRONG_COMMAND - Wrong NMT command received.
11 - ERROR_SYNC_EARLY - SYNC message was too early.
12 - ERROR_12_reserved - (reserved)
13 - ERROR_13_reserved - (reserved)
14 - ERROR_14_reserved - (reserved)
15 - ERROR_15_reserved - (reserved)
16 - ERROR_16_reserved - (reserved)
17 - ERROR_17_reserved - (reserved)
Communication or protocol errors (critical):
18 - ERROR_SYNC_TIME_OUT - SYNC message timeout.
19 - ERROR_SYNC_LENGTH - Unexpected SYNC data length
1A - ERROR_PDO_WRONG_MAPPING - Error with PDO mapping.
1B - ERROR_HEARTBEAT_CONSUMER - Heartbeat consumer timeout.
1C - ERROR_HEARTBEAT_CONSUMER_REMOTE_RESET - Heartbeat consumer detected remote node reset.
1D - ERROR_1D_reserved - (reserved)
1E - ERROR_1E_reserved - (reserved)
1F - ERROR_1F_reserved - (reserved)
Generic errors (informative):
20 - ERROR_20_reserved - (reserved)
21 - ERROR_21_reserved - (reserved)
22 - ERROR_22_reserved - (reserved)
23 - ERROR_23_reserved - (reserved)
24 - ERROR_24_reserved - (reserved)
25 - ERROR_25_reserved - (reserved)
26 - ERROR_26_reserved - (reserved)
27 - ERROR_27_reserved - (reserved)
Generic errors (critical):
28 - ERROR_WRONG_ERROR_REPORT - Wrong parameters to <CO_errorReport()> function.
29 - ERROR_ISR_TIMER_OVERFLOW - Timer task has overflowed.
2A - ERROR_MEMORY_ALLOCATION_ERROR - Unable to allocate memory for objects.
2B - ERROR_GENERIC_ERROR - Generic error, test usage.
2C - ERROR_MAIN_TIMER_OVERFLOW - Mainline function exceeded maximum execution time.
2D - ERROR_INTERNAL_STATE_APPL - Error in application software internal state.
2E - ERROR_2E_reserved - (reserved)
2F - ERROR_2F_reserved - (reserved)
Manufacturer specific errors:
Manufacturer may define its own constants up to index 0xFF. Of course, he must then define large enough buffer for error status bits (up to 32 bytes).</description>
</CANopenObject>
<CANopenObject index="2101" name="CAN node ID" objectType="7" memoryType="ROM" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0x30">
<accessFunctionPreCode>if(WRITING){
UNSIGNED8 var = *((UNSIGNED8*)dataBuff);
if(var < 1) return 0x06090032L; //Value of parameter written too low.
if(var > 127) return 0x06090031L; //Value of parameter written too high.
}</accessFunctionPreCode>
<label lang="en">CAN Node ID</label>
<description lang="en">CAN Node ID is CANopenNode specific variable. It sets node-ID for device on CANopen network. Node-ID can be set on other ways too, for example with DIP switches. More advanced solution is use of LSS.
Valid values are from 1 to 127:</description>
</CANopenObject>
<CANopenObject index="2102" name="CAN bit rate" objectType="7" memoryType="ROM" dataType="06" accessType="rw" PDOmapping="no" defaultValue="250">
<accessFunctionPreCode>if(WRITING){
UNSIGNED16 var;
memcpySwap2((UNSIGNED8*)&var, (UNSIGNED8*)dataBuff);
if(!(var == 10 || var == 20 || var == 50 || var == 125 || var == 250 || var == 500 || var == 800 || var == 1000)) return 0x06090030L; //Invalid value for the parameter
}</accessFunctionPreCode>
<label lang="en">CAN Bit-Rate</label>
<description lang="en">CAN Bit-Rate is CANopenNode specific variable. It sets CAN Bit-Rate for device on CANopen network.
Valid values are in [kbps]:
10, 20, 50, 125, 250, 500, 800, 1000</description>
</CANopenObject>
<CANopenObject index="2103" name="SYNC counter" objectType="7" memoryType="RAM" dataType="06" accessType="rw" PDOmapping="no" defaultValue="0">
<label lang="en">SYNC Counter</label>
<description lang="en">SYNC Counter is incremented each time, SYNC message is received or transmitted.</description>
</CANopenObject>
<CANopenObject index="2104" name="SYNC time" objectType="7" memoryType="RAM" dataType="06" accessType="ro" PDOmapping="no" defaultValue="0">
<label lang="en">SYNC Time</label>
<description lang="en">SYNC Time is incremented each timer period and reset to zero, each time SYNC is received or transmitted.</description>
</CANopenObject>
<CANopenObject index="2106" name="Power-on counter" objectType="7" memoryType="EEPROM" dataType="07" accessType="ro" PDOmapping="no" defaultValue="0">
<label lang="en">Power on Counter</label>
<description lang="en">Power on Counter counts total microcontroller resets in it's lifetime. Variable is an example of EEPROM usage.</description>
</CANopenObject>
<CANopenObject index="2107" name="Performance" objectType="8" subNumber="6" memoryType="RAM" dataType="06" accessType="rw" PDOmapping="optional">
<accessFunctionPreCode>if(WRITING){
UNSIGNED16 var;
memcpySwap2((UNSIGNED8*)&var, (UNSIGNED8*)dataBuff);
if(!((subIndex == 3 || subIndex == 5) && var == 0))
return 0x06090030; //Invalid value for parameter
}</accessFunctionPreCode>
<label lang="en">Performance</label>
<description lang="en">Internal performance of the microcontroller.
cycles per second - cycle frequency of internal timer.
timer cycle time - current timer cycle time in percent of timer period.
timer cycle max time - maximum timer cycle time in percent of timer period.
main cycle time - current mainline function cycle time in percent of timer period.
main cycle max time - maximum mainline function cycle time in percent of timer period.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="5"/>
<CANopenSubObject subIndex="01" name="cycles per second" objectType="7" defaultValue="1000"/>
<CANopenSubObject subIndex="02" name="timer cycle time" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="03" name="timer cycle max time" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="04" name="main cycle time" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="05" name="main cycle max time" objectType="7" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="2108" name="Temperature" objectType="8" subNumber="2" memoryType="RAM" dataType="03" accessType="ro" PDOmapping="optional">
<label lang="en">Temperature</label>
<description lang="en">Current temperature on device in 0,1°C.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="1"/>
<CANopenSubObject subIndex="01" name="main PCB" objectType="7" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="2109" name="Voltage" objectType="8" subNumber="2" memoryType="RAM" dataType="03" accessType="ro" PDOmapping="optional">
<label lang="en">Voltage</label>
<description lang="en">Current voltage on device in 0,1V.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="1"/>
<CANopenSubObject subIndex="01" name="main PCB supply" objectType="7" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="2110" name="Variable Int32" objectType="8" subNumber="17" memoryType="RAM" dataType="04" accessType="rw" PDOmapping="optional" TPDOdetectCOS="true">
<label lang="en">Variable Integer 32bit</label>
<description lang="en">Vartiable is free to use by application.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="16"/>
<CANopenSubObject subIndex="01" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="02" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="03" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="04" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="05" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="06" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="07" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="08" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="09" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0A" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0B" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0C" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0D" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0E" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0F" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="10" name="int32" objectType="7" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="2111" name="Variable ROM Int32" objectType="8" subNumber="17" memoryType="ROM" dataType="04" accessType="rw" PDOmapping="optional" TPDOdetectCOS="true">
<label lang="en">Variable ROM Integer 32bit</label>
<description lang="en">Vartiable is free to use by application.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="16"/>
<CANopenSubObject subIndex="01" name="int32" objectType="7" defaultValue="1"/>
<CANopenSubObject subIndex="02" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="03" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="04" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="05" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="06" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="07" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="08" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="09" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0A" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0B" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0C" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0D" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0E" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0F" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="10" name="int32" objectType="7" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="2112" name="Variable NV Int32" objectType="8" subNumber="17" memoryType="EEPROM" dataType="04" accessType="rw" PDOmapping="optional" TPDOdetectCOS="true">
<label lang="en">Variable nonvolatile Integer 32bit</label>
<description lang="en">Vartiable is free to use by application. Variable is stored to internal baterry powered SRAM.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="16"/>
<CANopenSubObject subIndex="01" name="int32" objectType="7" defaultValue="1"/>
<CANopenSubObject subIndex="02" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="03" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="04" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="05" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="06" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="07" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="08" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="09" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0A" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0B" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0C" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0D" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0E" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0F" name="int32" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="10" name="int32" objectType="7" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="2120" name="test var" objectType="9" subNumber="6" memoryType="RAM">
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="5"/>
<CANopenSubObject subIndex="01" name="I64" objectType="7" dataType="15" accessType="rw" PDOmapping="optional" defaultValue="0x1234567890ABCDEFLL"/>
<CANopenSubObject subIndex="02" name="U64" objectType="7" dataType="1B" accessType="rw" PDOmapping="optional" defaultValue="0x234567890ABCDEF1LL"/>
<CANopenSubObject subIndex="03" name="R32" objectType="7" dataType="08" accessType="rw" PDOmapping="optional" defaultValue="12.345"/>
<CANopenSubObject subIndex="04" name="R64" objectType="7" dataType="11" accessType="rw" PDOmapping="optional" defaultValue="456.789"/>
<CANopenSubObject subIndex="05" name="domain" objectType="7" dataType="0F" accessType="rw" PDOmapping="no" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="2130" name="Time" objectType="9" subNumber="4" memoryType="RAM">
<label lang="en">Time</label>
<description lang="en">Variable displays current time.
String - returns current time as string.
Epoch time ms - Milliseconds since unix epoch (1.1.1970, 00:00:00, UTC). It is calculated as base + offset. Base is calculated on startup of program and offset increments continuously since then. 'Epoch time offset ms' overflows each 49,7 days. 'Epoch time base ms' is recalculated in case of overflow or in case of write to 'Epoch time offset ms'. It is rounded to one minute.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="3"/>
<CANopenSubObject subIndex="01" name="String" objectType="7" dataType="09" accessType="ro" PDOmapping="no" defaultValue="- "/>
<CANopenSubObject subIndex="02" name="Epoch time base ms" objectType="7" dataType="1B" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="03" name="Epoch time offset ms" objectType="7" dataType="07" accessType="rw" PDOmapping="optional" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="2301" name="Trace config" objectType="9" subNumber="9" memoryType="ROM" disabled="true">
<label lang="en">Trace config</label>
<description lang="en">Trace is used for recording variables.
See also Trace.
Size - Maximum number of trace records in circular buffer. By reading it returns actual buffer size (If zero, malloc may had been failed at startup). By writing it sets the size, which will be valid after next reboot. (It is necessary to store parameters before (0x1010).)
Axis no - If value is different than zero, trace is enabled. Value is informative and describes group of traces (Multiple traces can belong to single axis.). By reading it returns zero if trace is disabled or if it is not configured properly. When trace is enabled, internal buffer is cleared.
Name - name of the trace as a string (informative).
Color - color of the trace as a string (informative).
Map - Map to variable in object dictionary, similar as PDO map(two bytes of index, one byte of subindex and 1 byte of bitlength. It's value will be copied to trace.value in case index and subindex are correct. If map index and subindex is zero, RPDO may be mapped to trace.value, for example. Valid values of map.bitlength is 08, 10 or 20 or 00, which indicates 8-bit, 16bit, 32-bit or default-size variable. Trace must be disabled, if mapping is written (Axis no set to 0).
Format - If first bit is zero, then value is used as signed integer otherwise as unsigned integer. If format is 0 or 1, text points are generated for time and value: "123;321\n140;345\n..." If format is 2 or 3, binary data is generated: 4-byte timestamp and 4-byte value. If format is 4 or 5, SVG path is generated: "M123,321H140V345...".
Trigger - 0=disabled, 1=rising edge, 2=falling edge, 3=both edges.
Threshold - If integer value passes threshold (based on trigger setting), time is recorded into 'trigger time'.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="8"/>
<CANopenSubObject subIndex="01" name="Size" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="100"/>
<CANopenSubObject subIndex="02" name="Axis no" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="1"/>
<CANopenSubObject subIndex="03" name="Name" objectType="7" dataType="09" accessType="rw" PDOmapping="no" defaultValue="Trace1 "/>
<CANopenSubObject subIndex="04" name="Color" objectType="7" dataType="09" accessType="rw" PDOmapping="no" defaultValue="red "/>
<CANopenSubObject subIndex="05" name="Map" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x60000108"/>
<CANopenSubObject subIndex="06" name="Format" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="1"/>
<CANopenSubObject subIndex="07" name="Trigger" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="08" name="Threshold" objectType="7" dataType="04" accessType="rw" PDOmapping="no" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="2302" name="Trace config" objectType="9" subNumber="9" memoryType="ROM" disabled="true">
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="8"/>
<CANopenSubObject subIndex="01" name="Size" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="02" name="Axis no" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="03" name="Name" objectType="7" dataType="09" accessType="rw" PDOmapping="no" defaultValue="Trace2 "/>
<CANopenSubObject subIndex="04" name="Color" objectType="7" dataType="09" accessType="rw" PDOmapping="no" defaultValue="green "/>
<CANopenSubObject subIndex="05" name="Map" objectType="7" dataType="07" accessType="rw" PDOmapping="no" defaultValue="0x00000000"/>
<CANopenSubObject subIndex="06" name="Format" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="07" name="Trigger" objectType="7" dataType="05" accessType="rw" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="08" name="Threshold" objectType="7" dataType="04" accessType="rw" PDOmapping="no" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="2400" name="Trace enable" objectType="7" memoryType="RAM" dataType="05" accessType="rw" PDOmapping="optional" defaultValue="0" disabled="true">
<label lang="en">Trace enable</label>
<description lang="en">This object controls, how many trace objects (beginning from index 0x2401) are enabled. If zero, all traces are disabled.</description>
</CANopenObject>
<CANopenObject index="2401" name="Trace" objectType="9" subNumber="7" memoryType="RAM" disabled="true">
<label lang="en">Trace</label>
<description lang="en">Trace is used for recording variables.
See also Trace config.
Size - Number of current records in buffer.
Value - Latest value. If traceConfig.map (index and subindex) is valid, then mapped variable will be copied here.
Min, Max - Minimum and maximum value.
Plot - SVG path generated from the values from circular buffer. For time axis is used Time->'Epoch time offset ms'. When Plot is read, internal buffer is emptied.
Trigger time - If integer value passes 'TraceConfig->threshold', then time is recorded into this variable.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="6"/>
<CANopenSubObject subIndex="01" name="Size" objectType="7" dataType="07" accessType="rw" PDOmapping="optional" defaultValue="0"/>
<CANopenSubObject subIndex="02" name="Value" objectType="7" dataType="04" accessType="rw" PDOmapping="optional" defaultValue="0"/>
<CANopenSubObject subIndex="03" name="Min" objectType="7" dataType="04" accessType="rw" PDOmapping="optional" defaultValue="0"/>
<CANopenSubObject subIndex="04" name="Max" objectType="7" dataType="04" accessType="rw" PDOmapping="optional" defaultValue="0"/>
<CANopenSubObject subIndex="05" name="Plot" objectType="7" dataType="0F" accessType="ro" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="06" name="Trigger time" objectType="7" dataType="07" accessType="rw" PDOmapping="optional" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="2402" name="Trace" objectType="9" subNumber="7" memoryType="RAM" disabled="true">
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="6"/>
<CANopenSubObject subIndex="01" name="Size" objectType="7" dataType="07" accessType="rw" PDOmapping="optional" defaultValue="0"/>
<CANopenSubObject subIndex="02" name="Value" objectType="7" dataType="04" accessType="rw" PDOmapping="optional" defaultValue="0"/>
<CANopenSubObject subIndex="03" name="Min" objectType="7" dataType="04" accessType="rw" PDOmapping="optional" defaultValue="0"/>
<CANopenSubObject subIndex="04" name="Max" objectType="7" dataType="04" accessType="rw" PDOmapping="optional" defaultValue="0"/>
<CANopenSubObject subIndex="05" name="Plot" objectType="7" dataType="0F" accessType="ro" PDOmapping="no" defaultValue="0"/>
<CANopenSubObject subIndex="06" name="Trigger time" objectType="7" dataType="07" accessType="rw" PDOmapping="optional" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="6000" name="Read input 8 bit" objectType="8" subNumber="9" memoryType="RAM" dataType="05" accessType="ro" PDOmapping="optional" TPDOdetectCOS="true">
<label lang="en">Read input 8 bit</label>
<description lang="en">Digital inputs from hardware.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="8"/>
<CANopenSubObject subIndex="01" name="Input" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="02" name="Input" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="03" name="Input" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="04" name="Input" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="05" name="Input" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="06" name="Input" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="07" name="Input" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="08" name="Input" objectType="7" defaultValue="0x00"/>
</CANopenObject>
<CANopenObject index="6200" name="Write output 8 bit" objectType="8" subNumber="9" memoryType="RAM" dataType="05" accessType="rw" PDOmapping="optional">
<label lang="en">Write output 8 bit</label>
<description lang="en">Digital outputs on hardware.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="8"/>
<CANopenSubObject subIndex="01" name="Output" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="02" name="Output" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="03" name="Output" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="04" name="Output" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="05" name="Output" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="06" name="Output" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="07" name="Output" objectType="7" defaultValue="0x00"/>
<CANopenSubObject subIndex="08" name="Output" objectType="7" defaultValue="0x00"/>
</CANopenObject>
<CANopenObject index="6401" name="Read analogue input 16 bit" objectType="8" subNumber="13" memoryType="RAM" dataType="03" accessType="ro" PDOmapping="optional">
<label lang="en">Read analogue input 16 bit</label>
<description lang="en">Analogue inputs from hardware. The integer value is left adjusted.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="12"/>
<CANopenSubObject subIndex="01" name="Input" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="02" name="Input" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="03" name="Input" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="04" name="Input" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="05" name="Input" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="06" name="Input" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="07" name="Input" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="08" name="Input" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="09" name="Input" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0A" name="Input" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0B" name="Input" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="0C" name="Input" objectType="7" defaultValue="0"/>
</CANopenObject>
<CANopenObject index="6411" name="Write analogue output 16 bit" objectType="8" subNumber="9" memoryType="RAM" dataType="03" accessType="rw" PDOmapping="optional">
<label lang="en">Write analogue output 16 bit</label>
<description lang="en">Analogue outputs on hardware. The integer value is left adjusted.</description>
<CANopenSubObject subIndex="00" name="max sub-index" objectType="7" dataType="05" accessType="ro" PDOmapping="no" defaultValue="8"/>
<CANopenSubObject subIndex="01" name="Output" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="02" name="Output" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="03" name="Output" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="04" name="Output" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="05" name="Output" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="06" name="Output" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="07" name="Output" objectType="7" defaultValue="0"/>
<CANopenSubObject subIndex="08" name="Output" objectType="7" defaultValue="0"/>
</CANopenObject>
</CANopenObjectList>
<other>
<file fileName="IO Example" fileCreator="JP" fileCreationDate="2016-03-25" fileCreationTime="18:04:29" fileVersion="-"/>
<DeviceIdentity>
<vendorName>CANopenNode</vendorName>
<productName>CANopenNode</productName>
<productText>
<label lang="en">CANopenNode</label>
<description lang="en" URI="http://canopennode.sourceforge.net">CANopenNode is an open source software stack used for serial communication of multiple devices over the CAN/CANopen Network.</description>
</productText>
</DeviceIdentity>
<capabilities>
<characteristicsList>
<characteristic>
<characteristicName>
<label lang="en"/>
</characteristicName>
<characteristicContent>
<label lang="en"/>
</characteristicContent>
</characteristic>
</characteristicsList>
</capabilities>
<baudRate>
<supportedBaudRate value="10 Kbps"/>
<supportedBaudRate value="20 Kbps"/>
<supportedBaudRate value="50 Kbps"/>
<supportedBaudRate value="125 Kbps"/>
<supportedBaudRate value="250 Kbps"/>
<supportedBaudRate value="500 Kbps"/>
<supportedBaudRate value="800 Kbps"/>
<supportedBaudRate value="1000 Kbps"/>
</baudRate>
<dummyUsage>
<dummy entry="Dummy0001=0"/>
<dummy entry="Dummy0002=1"/>
<dummy entry="Dummy0003=1"/>
<dummy entry="Dummy0004=1"/>
<dummy entry="Dummy0005=1"/>
<dummy entry="Dummy0006=1"/>
<dummy entry="Dummy0007=1"/>
</dummyUsage>
</other>
</device>