This repository has been archived by the owner on Nov 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
CHANGES
1329 lines (897 loc) · 24.1 KB
/
CHANGES
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
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Sun May 13 20:16:09 CEST 2007 etisserant
Fixed "function LoadCanDriver() should return library handle instead of 0 if succeeded" bug
unix.c 1.7
Sun May 13 10:29:50 CEST 2007 etisserant
Applied wolfgang changes, and re-indented socket_can.c file
can_socket.c 1.6
Sun May 13 10:29:08 CEST 2007 etisserant
Added debug level opt in configure and re-enabled debug macros.
states.c 1.11
applicfg.h 1.4
configure 1.20
Sat May 12 23:07:48 CEST 2007 etisserant
Removed dummy sleep.
TestMasterSlave.c 1.14
Sat May 12 23:06:43 CEST 2007 etisserant
Fixed problems in can_virtual, loop when closing pipes.
can_virtual.c 1.4
Sat May 12 22:43:30 CEST 2007 etisserant
Wolfgang enhancements for RT-socket-CAN support
can_socket.c 1.5
Sat May 12 22:42:51 CEST 2007 etisserant
CleanUp and minor fixes
dcf.c 1.2
Makefile.in 1.7
TestMasterSlave.c 1.13
TestMasterMicroMod.c 1.7
Makefile.in 1.12
Makefile.in 1.6
Makefile.in 1.6
Makefile.in 1.5
Makefile.in 1.5
Fri May 11 18:34:54 CEST 2007 etisserant
Let user choose his own XENO_CONFIG.
configure 1.19
Fri May 11 18:34:26 CEST 2007 etisserant
Fix can_socket again.
can_socket.c 1.4
Fri May 11 15:24:43 CEST 2007 lbessard
Bugs on C File generating corrected
nodemanager.py 1.10
gen_cfile.py 1.16
Fri May 11 15:16:45 CEST 2007 etisserant
Fixed can_socket compilation bugs
can_socket.c 1.3
.cvsignore 1.1
Fri May 11 11:52:05 CEST 2007 greg
correction of lifegrd compilation warning
lifegrd.c 1.6
Fri May 11 11:22:58 CEST 2007 lbessard
Bug on objectdictgen corrected
objdictgen.py 1.3
Thu May 10 09:33:07 CEST 2007 greg
Test if index 1F22 exists for Master OD (Concise DCF)
states.c 1.10
Fri May 04 13:57:54 CEST 2007 lbessard
Adding support for importing and exporting EDS files
objdictedit.py 1.17
nodemanager.py 1.9
node.py 1.11
gen_cfile.py 1.15
eds_utils.py 1.1
DS-406.prf 1.2
DS-404.prf 1.2
DS-401.prf 1.3
Fri May 04 12:46:09 CEST 2007 greg
updated manual
manual.odt 1.10
Fri May 04 12:33:30 CEST 2007 greg
Update help text.
TestMasterMicroMod.c 1.6
Fri May 04 12:32:08 CEST 2007 greg
Master configure slave's heartbeat producer time by concise DCF.
TestSlave.od 1.5
TestSlave.c 1.9
TestMasterSlave.c 1.12
TestMaster.od 1.3
TestMaster.h 1.5
TestMaster.c 1.6
Master.c 1.6
Fri May 04 12:26:46 CEST 2007 greg
Add concise DCF support
states.c 1.9
dcf.c 1.1
Makefile.in 1.6
dcf.h 1.1
data.h 1.11
manual.odt 1.9
Fri May 04 12:22:48 CEST 2007 greg
Add default callback for index entry 0x1017
lifegrd.c 1.5
node.py 1.10
Mon Apr 30 16:56:20 CEST 2007 greg
Support for DCF (DS-302)
objdictedit.py 1.16
nodemanager.py 1.8
node.py 1.9
gen_cfile.py 1.14
DS-302.prf 1.1
Tue Apr 24 16:49:40 CEST 2007 etisserant
Added writeLocalDict and readLocalDict, that have to be called from application instead of getODEntry and setODEntry. Fix potential endianization problem.
CanFestival-3.def 1.4
objacces.c 1.12
objacces.h 1.6
main.c 1.4
Master.c 1.5
TestMasterMicroMod.c 1.5
Tue Apr 24 16:16:03 CEST 2007 etisserant
Added _writenetworkdictionary option to avoir endianiation
sdo.c 1.19
Tue Apr 24 14:41:19 CEST 2007 etisserant
Set PDO transmit time according to ESA perceptionof CanOpen
TestMasterMicroMod.c 1.4
Tue Apr 24 13:26:03 CEST 2007 etisserant
Removed SDOTimeout application callback.Please use SDO callbacks instead.
sdo.c 1.18
sdo.h 1.7
data.h 1.10
win32test.h 1.3
objdict.h 1.5
appli.c 1.7
TestMasterSlave.c 1.11
Slave.h 1.3
Slave.c 1.4
Master.h 1.3
Master.c 1.4
TestMasterMicroMod.c 1.3
Thu Apr 19 09:54:34 CEST 2007 etisserant
EDS import
objdictedit.py 1.15
nodemanager.py 1.7
Wed Apr 18 13:06:39 CEST 2007 etisserant
Fixed segfault with Xenomai timer_xeno.c
timers_xeno.c 1.8
Wed Apr 18 13:05:55 CEST 2007 etisserant
Removed compilation warnings with some GCC. + Fixed test for baudrate = none
TestMasterSlave.c 1.10
TestMasterMicroMod.c 1.2
Wed Apr 18 13:05:15 CEST 2007 etisserant
Added install target for MicroMod
Makefile.in 1.2
Makefile.in 1.6
Wed Apr 18 13:04:19 CEST 2007 etisserant
Removed compilation warnings with some GCC.
timer.c 1.6
canfestival.h 1.4
data.h 1.9
Tue Apr 17 16:13:22 CEST 2007 etisserant
Added a MicroMod Master sample in examples/TestMasterMicroMod. Fixed some SDO abort code and callback problem in sdo.c.
sdo.c 1.17
TestMasterSlave.vcproj 1.1
getopt.h 1.1
getopt.c 1.1
TestMasterMicroMod.vcproj 1.1
TestMasterMicroMod.h 1.1
TestMasterMicroMod.c 1.1
TestMaster.od 1.1
TestMaster.h 1.1
TestMaster.c 1.1
Makefile.in 1.1
.cvsignore 1.1
Makefile.in 1.5
configure 1.18
CanFestival-3.vc8.sln 1.3
Tue Apr 17 16:11:38 CEST 2007 etisserant
Removed binry flag on vcproj files
win32test.vcproj 1.3
can_uvccm_win32.vcproj 1.3
CanFestival-3.vc8.vcproj 1.4
Tue Apr 17 10:50:50 CEST 2007 etisserant
*** empty log message ***
.cvsignore 1.4
Tue Apr 17 10:50:28 CEST 2007 etisserant
Added SDO network dictionnary access callback when aborded.
sdo.c 1.16
Tue Apr 17 10:48:17 CEST 2007 etisserant
Better error handling for unix and peak_linux.
unix.c 1.6
can_peak_linux.c 1.3
Sun Apr 15 00:49:34 CEST 2007 etisserant
SetODEntry now call CO_data->storeODSubEntry(Index,SubIndex) for variables to be Stored (when column Save==True in GUI)
objacces.c 1.11
objdictdef.h 1.3
objacces.h 1.5
data.h 1.8
TestSlave.od 1.4
TestSlave.c 1.8
TestMasterSlave.c 1.9
Slave.c 1.3
Sun Apr 15 00:45:49 CEST 2007 etisserant
Removed genrated dead prototypes for depricated callbacks.
TestSlave.h 1.4
TestMaster.h 1.4
Slave.h 1.2
Master.h 1.2
gen_cfile.py 1.13
Fri Apr 13 21:54:13 CEST 2007 etisserant
Updated doc.
manual_en.pdf 1.2
manual.odt 1.8
Fri Apr 13 10:57:01 CEST 2007 etisserant
Moved DS-301 PDF into objdictgen. Fixed installation on linux. Now TestMasterSlave is also installed in $PREFIX/bin.
manual_en.pdf 1.1
canfestival.gif 1.1
301_v04000201.pdf 1.1
Makefile.in 1.2
CONTRIBUTORS 1.2
.cvsignore 1.3
objdictedit.py 1.14
DS301_index.py 1.4
about.html 1.1
Makefile.in 1.5
Makefile.in 1.4
Makefile.in 1.5
Makefile.in 1.5
Makefile.in 1.4
Makefile.in 1.4
canfestival_overview.svg 1.1
Makefile.in 1.7
Makefile.in 1.11
canfestival_scheduling.svg 1.1
canfestival_OSless.svg 1.1
canfestival_OS.svg 1.1
Thu Apr 12 17:11:16 CEST 2007 etisserant
Added cosmetics with Can_Virtual
can_virtual.c 1.3
Thu Apr 12 17:10:27 CEST 2007 etisserant
Removed dead code.
Makefile.in 1.3
TestMasterSlave.c 1.8
Thu Apr 12 16:36:31 CEST 2007 etisserant
Removed Mutex liberation on CanSend. Too much race condition to avoid. Cannot be deeply tested.
unix.c 1.5
Thu Apr 12 16:20:22 CEST 2007 etisserant
Implemented writeNetworkDictCallBack test in TestMasterSlave example. Fixed callback assignement race condition in sdo.c.
sdo.c 1.15
TestSlave.od 1.3
TestSlave.c 1.7
TestMasterSlave.h 1.5
Master.c 1.3
Thu Apr 12 16:17:35 CEST 2007 etisserant
Post_sync have to be called even if in pre-op state. Fixed.
sync.c 1.7
Thu Apr 12 16:14:07 CEST 2007 etisserant
Now, setNodeId does change TPDO and RPDO CobId without testing previous CobId in order to avoid confusion. Standard does not says when 'default value' should be applied. See DS301 - Object 1400h - 15FFh: Receive PDO Communication Parameter page 108.
states.c 1.8
Wed Apr 11 07:50:33 CEST 2007 etisserant
Updated doc. Cleaned some code.
manual.odt 1.7
unix.c 1.4
Sat Apr 07 09:49:05 CEST 2007 etisserant
Some win32 fixes following yesterday's API changes.
CanFestival-3.def 1.3
nmtSlave.c 1.4
sync.h 1.3
states.h 1.4
drivers_win32.cpp 1.4
CanFestival-3.vc8.vcproj 1.3
Fri Apr 06 16:49:27 CEST 2007 etisserant
Changes in the API: - No more mandatory callbacks declared for each node anymore heartbeatError SDOtimeoutError initialisation preOperational operational stopped post_sync post_TPDO canSend - Fill function ptr to declare callbacks CO_Data.heartbeatError CO_Data.SDOtimeoutError CO_Data.initialisation CO_Data.preOperational CO_Data.operational CO_Data.stopped CO_Data.post_sync CO_Data.post_TPDO - CanClose now takes CO_Data* as parameter - canSend is provided to the stack directly by OS interface, no specific callback.
timer.c 1.5
sync.c 1.6
states.c 1.7
sdo.c 1.14
pdo.c 1.4
nmtSlave.c 1.3
nmtMaster.c 1.3
lifegrd.c 1.4
canfestival.h 1.3
sync.h 1.2
states.h 1.3
sdo.h 1.6
lifegrd.h 1.4
data.h 1.7
main.c 1.3
appli.c 1.6
TestMasterSlave.h 1.4
TestMasterSlave.c 1.7
Slave.c 1.2
Master.c 1.2
unix.c 1.3
manual.odt 1.6
objdictedit.py 1.13
canfestival.h 1.3
drivers_win32.cpp 1.3
timers_unix.c 1.7
Thu Apr 05 10:06:11 CEST 2007 lbessard
Bug on CanOpen help popup corrected
objdictedit.py 1.12
Thu Apr 05 09:03:18 CEST 2007 lbessard
Bug on CanOpen help popup corrected
objdictedit.py 1.11
DS301_index.py 1.3
Wed Apr 04 13:11:49 CEST 2007 etisserant
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
Makefile.in 1.10
.cvsignore 1.2
Makefile.in 1.4
Makefile.in 1.4
Makefile.in 1.3
Wed Apr 04 13:04:31 CEST 2007 etisserant
Win32 Native support and dynamicaly loaded CAN drivers for Linux, Cygwin and Win32.
resource.h 1.2
CanFestival-3.rc 1.2
CanFestival-3.def 1.2
sdo.c 1.13
Makefile.in 1.5
timerscfg.h 1.2
config.h 1.2
canfestival.h 1.2
applicfg.h 1.2
canfestival.h 1.2
applicfg.h 1.3
timers_driver.h 1.3
timer.h 1.3
data.h 1.6
can_driver.h 1.5
can.h 1.3
win32test.vcproj 1.2
win32test.od 1.2
win32test.h 1.2
win32test.c 1.2
main.c 1.2
.cvsignore 1.2
getopt.h 1.2
getopt.c 1.2
TestSlave.c 1.6
TestMasterSlave.h 1.3
TestMasterSlave.c 1.6
TestMaster.c 1.5
.cvsignore 1.3
timers_win32.cpp 1.2
drivers_win32.cpp 1.2
unix.c 1.2
Makefile.in 1.5
timers_xeno.c 1.7
Makefile.in 1.3
timers_unix.c 1.6
Makefile.in 1.3
Makefile.in 1.3
can_virtual.c 1.2
Makefile.in 1.9
can_uvccm_win32.vcproj 1.2
can_uvccm_win32.def 1.2
can_uvccm_win32.cpp 1.2
.cvsignore 1.2
can_socket.c 1.2
Makefile.in 1.3
cancfg.h.tail 1.2
cancfg.h.head 1.2
can_peak_win32.vcproj 1.2
can_peak_win32.def 1.2
can_peak_win32.c 1.4
Makefile.in 1.3
.cvsignore 1.3
can_peak_linux.c 1.2
Makefile.in 1.2
.cvsignore 1.2
lincan.h 1.2
canmsg.h 1.2
can_lincan.c 1.2
Makefile.in 1.3
.cvsignore 1.2
configure 1.17
CanFestival-3.vc8.vcproj 1.2
CanFestival-3.vc8.sln 1.2
.cvsignore 1.2
Tue Apr 03 20:20:26 CEST 2007 etisserant
file getopt.c was initially added on branch BRANCH_WIN32PORT.
getopt.c 1.1
Tue Apr 03 15:10:52 CEST 2007 etisserant
file .cvsignore was initially added on branch BRANCH_WIN32PORT.
.cvsignore 1.1
.cvsignore 1.1
Mon Apr 02 14:41:37 CEST 2007 etisserant
file .cvsignore was initially added on branch BRANCH_WIN32PORT.
.cvsignore 1.1
Fri Mar 30 16:57:45 CEST 2007 etisserant
file unix.c was initially added on branch BRANCH_WIN32PORT.
unix.c 1.1
Mon Mar 26 12:06:21 CEST 2007 etisserant
file can_peak_win32.vcproj was initially added on branch BRANCH_WIN32PORT.
can_peak_win32.vcproj 1.1
Fri Feb 16 17:11:49 CET 2007 leonid
file win32test.vcproj was initially added on branch BRANCH_WIN32PORT.
win32test.vcproj 1.1
Thu Feb 15 17:23:45 CET 2007 leonid
file CanFestival-3.vc8.vcproj was initially added on branch BRANCH_WIN32PORT.
CanFestival-3.vc8.vcproj 1.1
Wed Feb 14 22:19:53 CET 2007 leonid
file resource.h was initially added on branch BRANCH_WIN32PORT.
resource.h 1.1
Tue Feb 13 18:38:30 CET 2007 etisserant
Removed all non-supported and uncontrolled source code. Please refer to CVS version "Before_..." to see old code.
Makefile.in 1.6
states.c 1.6
Makefile.in 1.4
Makefile.in 1.8
Tue Feb 13 18:06:17 CET 2007 etisserant
Removed all non-supported and uncontrolled source code. Please refer to CVS version "Before_..." to see old code.
Makefile.in 1.4
objdictgen.py 1.2
Makefile.in 1.2
TestSlave.c 1.5
TestMaster.c 1.4
Makefile.in 1.3
Makefile.in 1.7
Makefile.in 1.4
configure 1.16
Tue Feb 13 17:21:19 CET 2007 etisserant
- Some fixes in Makefile.in
Makefile.in 1.4
Tue Feb 13 16:36:44 CET 2007 etisserant
- Better array initialization in data.h CANOPEN_NODE_DATA_INITIALIZER macro. Use a little hack with configure and config.h to create the "pure Ansi C" initializer. - Workaround for the compiler compatibility with empty arrays (i.e. Index 1016). - Some fixes in Makefile.in
gen_cfile.py 1.12
Makefile.in 1.3
data.h 1.5
TestSlave.c 1.4
Makefile.in 1.5
configure 1.15
Fri Feb 09 09:36:19 CET 2007 frdupin
copy/paste error
pdo.c 1.3
Wed Feb 07 12:27:05 CET 2007 frdupin
pointer bogue for *(d->iam_a_slave)
states.c 1.5
Mon Feb 05 10:22:31 CET 2007 frdupin
little/big endian and nodeId
sdo.c 1.12
Tue Jan 30 11:18:20 CET 2007 frdupin
big endian bogue : nodeIdServer in now in 32 bits
sdo.c 1.11
Tue Jan 30 10:28:44 CET 2007 frdupin
unused variables
sync.c 1.5
Tue Jan 30 10:28:22 CET 2007 frdupin
forgot some comments ...
sdo.c 1.10
Tue Jan 30 10:25:19 CET 2007 frdupin
BIG endian def is moved to config.h
applicfg.h 1.3
Tue Jan 30 10:24:09 CET 2007 frdupin
16 bits arch compatibility and unused variables
sdo.c 1.9
Mon Jan 29 15:39:20 CET 2007 frdupin
hcs12 is big_endian
configure 1.14
Mon Jan 29 14:42:32 CET 2007 frdupin
compilers compatibility
objdict.h 1.4
objdict.c 1.3
appli.c 1.5
Mon Jan 29 14:33:45 CET 2007 frdupin
Add comment in config.h
configure 1.13
Mon Jan 29 14:32:58 CET 2007 frdupin
compilers compatibility
gen_cfile.py 1.11
ports.h 1.2
data.h 1.4
TestSlave.h 1.3
TestSlave.c 1.3
TestMaster.h 1.3
TestMaster.c 1.3
Mon Jan 29 09:42:22 CET 2007 frdupin
compiler compatibility : accessDictionaryError contains nothing out of debogue mode
objacces.c 1.10
objacces.h 1.4
Mon Jan 29 09:27:58 CET 2007 frdupin
compiler compatibility : comments
sdo.h 1.5
lifegrd.h 1.3
Fri Jan 26 10:49:00 CET 2007 lbessard
LGPL copyright on generated files removed
gen_cfile.py 1.10
Fri Jan 26 08:54:02 CET 2007 lbessard
Code for avoiding possible problem on Window while importing html module Add possibility to load CanOpen DS-301 Help even if no index is selected
objdictedit.py 1.10
DS301_index.py 1.2
Thu Jan 25 17:36:39 CET 2007 frdupin
compilator compatitibility
timer.c 1.4
sync.c 1.4
states.c 1.4
sdo.c 1.8
pdo.c 1.2
objacces.c 1.9
nmtSlave.c 1.2
nmtMaster.c 1.2
lifegrd.c 1.3
applicfg.h 1.2
timerscfg.h 1.3
timer.h 1.2
states.h 1.2
sdo.h 1.4
pdo.h 1.2
objdictdef.h 1.2
objacces.h 1.3
nmtSlave.h 1.2
nmtMaster.h 1.2
lifegrd.h 1.2
def.h 1.2
data.h 1.3
can.h 1.2
Thu Jan 25 16:49:51 CET 2007 lbessard
Bug corrected on gen_cfile
gen_cfile.py 1.9
Mon Jan 22 12:06:29 CET 2007 lbessard
DS-401 and DS-418 updated
DS-418.prf 1.2
DS-401.prf 1.2
Sat Jan 20 09:49:02 CET 2007 lbessard
Adding the possibility for users to choose between Dynamic Mapping and Static Mapping
objdictedit.py 1.9
nodemanager.py 1.6
node.py 1.8
Thu Jan 18 15:15:55 CET 2007 lbessard
TIME_OF_DAY and TIME_DIFFERENCE disabled
node.py 1.7
Thu Jan 18 14:18:24 CET 2007 lbessard
gen_cfile.py modified for avoiding possible conflict in mapped variable names
gen_cfile.py 1.8
Thu Jan 11 11:08:56 CET 2007 frdupin
PDO mapping parameters : number of mapped app must be in RW access
node.py 1.6
Wed Jan 10 17:42:34 CET 2007 lbessard
Bug reported by Dean corrected
node.py 1.5
gen_cfile.py 1.7
Wed Jan 03 10:33:55 CET 2007 lbessard
Bug on map variable type changing and on comments with special characters corrected
objdictedit.py 1.8
nodemanager.py 1.5
node.py 1.4
gen_cfile.py 1.6
Tue Jan 02 15:10:38 CET 2007 frdupin
index 0x1004 is a visible_string
node.py 1.3
Tue Dec 19 16:45:39 CET 2006 frdupin
some improvements
readme.txt 1.4
objdict.h 1.3
appli.c 1.4
Tue Dec 19 16:30:57 CET 2006 frdupin
prototypes in c-ansi style
gen_cfile.py 1.5
Wed Dec 13 18:48:01 CET 2006 lbessard
Some bugs reported by Francis Dupin corrected.
objdictedit.py 1.7
nodemanager.py 1.4
node.py 1.2
Wed Dec 13 16:21:14 CET 2006 frdupin
*** empty log message ***
readme.txt 1.3
Wed Dec 13 15:36:30 CET 2006 frdupin
lock interrupt before candispatch
appli.c 1.3
Wed Dec 13 14:48:04 CET 2006 frdupin
unused variable deleted
objacces.c 1.8
Wed Dec 13 14:44:27 CET 2006 frdupin
Tested. OK on Canfestival 3 rc2
readme.txt 1.2
objdict.od 1.2
objdict.h 1.2
objdict.c 1.2
appli.c 1.2
Wed Dec 13 14:13:10 CET 2006 frdupin
Add prototypes
lifegrd.c 1.2
sync.c 1.3
states.c 1.3
sdo.c 1.7
sdo.h 1.3
Tue Dec 12 17:32:05 CET 2006 frdupin
Je n'ai pas terminé
manual.odt 1.5
Tue Dec 12 17:30:26 CET 2006 frdupin
yes, I prefer in pdf
CANOpen_memento.pdf 1.1
Tue Dec 12 17:27:48 CET 2006 frdupin
Moved from ..
CANOpen_memento.odg 1.1
Wed Nov 29 15:51:15 CET 2006 etisserant
minval/maxval macro operators precedence fix. Thanks Luis Jim?nez.
timer.c 1.3
timers_unix.c 1.5
Thu Aug 31 10:28:53 CEST 2006 etisserant
SOCKET-CAN support added. Many thanks to Jan Kiszka !
timers_xeno.c 1.6
can_socket.c 1.1
Makefile.in 1.1
configure 1.12
Thu Aug 10 17:57:33 CEST 2006 etisserant
Updated doc
manual.odt 1.4
Thu Aug 10 17:38:53 CEST 2006 etisserant
Updated doc
manual.odt 1.3
Thu Aug 10 17:13:23 CEST 2006 lbessard
Bug on NoteBook in Windows corrected
objdictedit.py 1.5
objdictedit.py 1.6
Thu Aug 10 08:53:05 CEST 2006 etisserant
cygwin/pcan_light commit. Changes in configure for dual port handling.
can_peak_win32.c 1.3
configure 1.11
Tue Aug 08 22:34:32 CEST 2006 etisserant
First working cygwin/pcan_light commit. can_peak_win32.c is obfuscated.
can_peak_win32.c 1.2
Makefile.in 1.2
.cvsignore 1.2
configure 1.10
Fri Jun 23 16:32:42 CEST 2006 etisserant
Updated configure and fixes in Makefiles.in for cygwin compiling.
Makefile.in 1.2
TestMasterSlave.c 1.5
Makefile.in 1.4
Makefile.in 1.2
Makefile.in 1.2
Makefile.in 1.2
Makefile.in 1.2
Makefile.in 1.6
Makefile.in 1.2
configure 1.9
Wed Jun 21 08:31:34 CEST 2006 lbessard
Add incremented index in Add Map Variable Remove jaxe from makefile and configure
objdictedit.py 1.4
nodemanager.py 1.3
Makefile.in 1.2
configure 1.8
Tue Jun 20 22:43:37 CEST 2006 etisserant
Cygwin port. Still untested. Compiles and link.
timer.c 1.2
timerscfg.h 1.2
.cvsignore 1.2
timers_unix.c 1.4
can_peak_win32.c 1.1
Makefile.in 1.1
.cvsignore 1.1
configure 1.7
Tue Jun 20 19:02:43 CEST 2006 etisserant
Some fixes for GUI running Windows
objdictedit.py 1.3
Tue Jun 20 17:41:13 CEST 2006 etisserant
Added bauderate/disable option to TestMasterSlave Master and Slave nodes.
TestMasterSlave.c 1.4
Tue Jun 20 16:56:39 CEST 2006 lbessard
Bug on receiveLoopTask termination corrected
timers_xeno.c 1.5
timers_unix.c 1.3
Mon Jun 19 16:35:12 CEST 2006 etisserant
Fixed Xeno crash when no more alarm are set...
timers_xeno.c 1.4
Mon Jun 19 14:19:23 CEST 2006 etisserant