forked from rbei-etas/busmaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangelog.txt
25773 lines (16732 loc) · 848 KB
/
Changelog.txt
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
commit 285a451d4bccf43c4981374238b854be9c296e10
Author: saravanan <[email protected]>
Date: Fri Jul 1 12:55:37 2016 +0530
Updated files for v3.0.0
commit 69530befe9ca80d8fbe609dba50fe0447563cbc4
Author: saravanan <[email protected]>
Date: Thu Jun 30 17:56:36 2016 +0530
BUSMASTER v3.0.0 changes
commit 93f0f2805bbef626758a717ab176d47bc424bab4
Author: Prathiba <[email protected]>
Date: Tue Nov 17 12:07:30 2015 +0530
Version information updated
commit 41180fd99ae65bf8d2b683eb8095acb87c41b1f8
Author: Prathiba <[email protected]>
Date: Mon Nov 16 18:24:59 2015 +0530
Updated Documentation for v2.6.4
commit 9c9a1eab4ec821eafc395817ae97370a579661a1
Author: Prathiba <[email protected]>
Date: Mon Nov 16 17:19:13 2015 +0530
BUSMASTER v2.6.4 changes
commit b5d2283d30eaebddf979f329b7ff55c463f19f0e
Author: saravanan <[email protected]>
Date: Fri Aug 7 15:40:42 2015 +0530
Updated version information and help contents
commit 77091d5527bcd4d5bc9c53be2f1b5a58a9a4f2e0
Author: saravanan <[email protected]>
Date: Fri Aug 7 14:27:14 2015 +0530
Updated with bug fixes and LIN Kvaser contribution for v2.6.3
commit 724cd462e165f8199f283010f09c522e93e3a24b
Author: saravanan <[email protected]>
Date: Wed May 20 13:50:44 2015 +0530
Changes for v2.6.2
commit 1ff3b544f655974a4fc65ebe2f931a5c53a9fa8f
Author: saravanan <[email protected]>
Date: Fri Feb 27 15:45:59 2015 +0530
Version information updated
commit 150c0d69c00bf70cceb0b5075e93257f103cdc4b
Author: saravanan <[email protected]>
Date: Fri Feb 27 15:00:33 2015 +0530
Updated for v2.6.1
commit 9f1cb0c9b26c520cad26dabbc04bdfb315b8d681
Author: saravanan <[email protected]>
Date: Fri Nov 7 11:35:17 2014 +0530
Updated What's New page
commit e18534c998478294c71503f47e5b58b1b370495e
Author: saravanan <[email protected]>
Date: Thu Nov 6 20:22:08 2014 +0530
Updated MHS library file path
commit c4716b5674df234c9e1b41da931a2d28f1104f33
Author: saravanan <[email protected]>
Date: Thu Nov 6 17:57:13 2014 +0530
Updated version and license details
commit a5460744c5e23f3bbd588eac048553ba5df3ece6
Author: saravanan <[email protected]>
Date: Fri Oct 31 18:08:31 2014 +0530
Updated for DBManager compilation
commit 075c056775ef39f203226facc0866062f465e707
Author: saravanan <[email protected]>
Date: Fri Oct 31 17:08:49 2014 +0530
Added solution files
commit e7f98e09e942d86751e233e4a203c8c0c3f7003a
Author: saravanan <[email protected]>
Date: Fri Oct 31 16:54:56 2014 +0530
v2.6.0 changes
commit 569daa43c3c6e7dc3d798840beb3ca78d340d32f
Author: Tobias Lorenz <[email protected]>
Date: Fri Aug 29 13:55:37 2014 +0200
Several optimizations
* BUSMASTER.exe.manifest: File beautified
* stdafx.h: WINVER declarations removed
* CMakeLists.txt: Unnecessary linker declarations removed (e.g. /STACK:8000000)
* CMakeLists.txt: Unnecessary optimization hinderers removed (e.g. remove_definitions)
Signed-off-by: Tobias Lorenz <[email protected]>
commit 2dc1ca14e57eb31ed40d257f80b8cce95bd16bec
Merge: c1a4a39 0ba65c7
Author: Tobias Lorenz <[email protected]>
Date: Thu Aug 28 16:15:10 2014 +0200
Merge branch 'master' of https://github.com/rbei-etas/busmaster
Conflicts:
Sources/BIN/Libs/Release/vs_can_api.lib
Sources/BIN/Libs/busmaster_debug/vs_can_api.lib
Sources/BIN/busmaster_debug/vs_can_api.dll
Sources/CAN_VSCOM/vs_can_api.h
Signed-off-by: Tobias Lorenz <[email protected]>
commit c1a4a399a59f1922dd15a49235ff0b66b634d619
Author: Tobias Lorenz <[email protected]>
Date: Thu Aug 28 16:05:58 2014 +0200
Introduction of CMake for BUSMASTER solution/project generation.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 0ba65c7c9eca8363f63a5b96f2c20cc5a3cdbef1
Author: Tobias Lorenz <[email protected]>
Date: Thu Aug 28 14:58:48 2014 +0200
Fix linker warnings from WinDDK
That's the warning:
warning LNK4254: section 'ATL' (50000040) merged into '.rdata' (40000040) with different attributes
That's the fix:
http://stackoverflow.com/questions/13971980/warning-lnk4254-section-atl-50000040-merged-into-rdata-40000040-with-d
Signed-off-by: Tobias Lorenz <[email protected]>
commit 61b34ae297f814ee3689142a88376003fdcb8259
Author: Tobias Lorenz <[email protected]>
Date: Wed Aug 27 09:23:18 2014 +0200
Added chapter on CMake to Development Environment Documentation.
Signed-off-by: Tobias Lorenz <[email protected]>
commit f723c573739f834541537dc2c68f5f4741255b54
Author: Tobias Lorenz <[email protected]>
Date: Tue Aug 26 17:45:50 2014 +0200
Correction of ES581.3 serial number handling.
Signed-off-by: Tobias Lorenz <[email protected]>
commit d968a7184ab95074f1d69e6021e27e70451fdc28
Merge: 623daaf 10da1b7
Author: Tobias Lorenz <[email protected]>
Date: Mon Aug 25 19:20:02 2014 +0200
Merge pull request #748 from yegorich/dll-update
CAN_VSCOM: bump API to 1.7.1
commit 10da1b7824a1341dfdae3283a341bc6387314055
Author: Yegor Yefremov <[email protected]>
Date: Mon Aug 25 09:35:05 2014 +0200
CAN_VSCOM: bump API to 1.7.1
commit 623daaf7ced3962269e5a3f8d7f6e23c126e21a4
Author: Tobias Lorenz <[email protected]>
Date: Thu Aug 21 18:02:22 2014 +0200
Centralize MFC build definition
Signed-off-by: Tobias Lorenz <[email protected]>
commit 02a3e6bf25747275407cbdd7b9857c8796194aba
Author: Tobias Lorenz <[email protected]>
Date: Thu Aug 21 17:04:34 2014 +0200
Changes to improve compilation under different IDEs/compilers
Only the MSVC/MSBuild is generating Configuration-dependent directories,
e.g. Release, Debug, ...
Hence the copy command to install the targets into the BIN,
was not working under QtCreator.
This has been fixed now by using $<TARGET_FILE:...> property.
The definition _AFXDLL is necessary instead of _AFXEXT
to exclude some includes in the global afxres.rc.
These includes where not found and hence broke compilation.
It works now in MSVC/MSBuild and QtCreator/NMake
Signed-off-by: Tobias Lorenz <[email protected]>
commit 7b14b204a6f88252f97b106ac28a827c24f35c82
Merge: ff6490e 6d871f4
Author: Tobias Lorenz <[email protected]>
Date: Thu Aug 21 13:44:35 2014 +0200
Merge branch 'master' of https://github.com/rbei-etas/busmaster
commit ff6490ecc09154caa8af81451c1a77a372928a4a
Author: Tobias Lorenz <[email protected]>
Date: Thu Aug 21 13:44:03 2014 +0200
Replace the VS solution/project files with CMake.
CMake sets these files up automatically.
But if you prefer CMake can also setup for different environments.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 6d871f4644b83db3df2d56315eda3e324bdc6db0
Merge: 03328dd 14f5203
Author: Tobias Lorenz <[email protected]>
Date: Thu Aug 21 13:38:01 2014 +0200
Merge pull request #747 from yegorich/cppcheck
Cppcheck
commit 14f5203aebd5c44b3cf80c49c7531291f097df4f
Author: Yegor Yefremov <[email protected]>
Date: Thu Aug 21 12:06:31 2014 +0200
CAN_VSCOM: reduce variable scope
commit 9f8c0bc36aeb9fac30780afc6833a34d8866a903
Author: Yegor Yefremov <[email protected]>
Date: Thu Aug 21 12:01:00 2014 +0200
CAN_VSCOM: remove redundant assignments
commit 9443b306bfc9211dddd4886e319421607332a0ad
Author: Yegor Yefremov <[email protected]>
Date: Thu Aug 21 11:50:22 2014 +0200
CAN_VSCOM: fix memset() size
Use size of the data and not of its pointer.
commit 03328dd58399b3ea2fb2237928920fe62203a3f7
Merge: 80804ad b7e34a7
Author: Tobias Lorenz <[email protected]>
Date: Wed Aug 20 10:12:10 2014 +0200
Merge pull request #745 from yegorich/vscom
CAN_VSCOM: change error message to reflect new menu structure
commit b7e34a73aec0073bd823658abc9f522dd415ff0c
Author: Yegor Yefremov <[email protected]>
Date: Tue Aug 19 14:13:02 2014 +0200
CAN_VSCOM: change error message to reflect new menu structure
commit 80804addb9be7cfe94a97bf964c0315064b8d68e
Merge: 1b000f4 3403d1d
Author: Tobias Lorenz <[email protected]>
Date: Tue Jul 29 17:37:46 2014 +0200
Merge branch 'master' of https://github.com/rbei-etas/busmaster
commit 1b000f437067b53f3c0c3d6d9f7fdd62e4538067
Author: Tobias Lorenz <[email protected]>
Date: Tue Jul 29 17:36:50 2014 +0200
NSIS: Different graphics and cleanups in script
* Defined new headerimage based on BUSMASTER logo text
* Defined new welcomefinishpage based on vertical flyer with twisted arrows.
* Removal of uncommented code from the script.
* Changed tabs to blanks
* Removed blanks at the line endings
Signed-off-by: Tobias Lorenz <[email protected]>
commit 3403d1d2932084e9cf1b75368adbebe1451c954c
Author: RBEI-Saravanan <[email protected]>
Date: Thu Jul 24 15:48:14 2014 +0530
Updated busmaster_{debug settings for tlb file reference
commit ea765068b19e322a8489186f1c3a48986315c00e
Author: saravanan <[email protected]>
Date: Wed Jul 23 17:00:58 2014 +0530
Simulated Systems folder reference path updated
commit c1f50c3d34b488600a709128fc9849cc0140eac4
Author: saravanan <[email protected]>
Date: Wed Jul 23 16:16:17 2014 +0530
Updated image
commit 63fc716d7a886caefc878ff351822fe44448fdb5
Author: saravanan <[email protected]>
Date: Wed Jul 23 16:12:58 2014 +0530
Updated tlb path
commit 1176591bda11a81fc367928bc584073c23fd467c
Author: saravanan <[email protected]>
Date: Wed Jul 23 16:10:15 2014 +0530
Updated BusMaster tlb path
commit a39025108ba4a7e043ad53790c3b5e2aeac63409
Author: saravanan <[email protected]>
Date: Wed Jul 23 15:35:46 2014 +0530
BusMaster v2.5.0 changes
commit 71797d9b5a40a953afe1dd05a1392965cfa9deb7
Author: Tobias Lorenz <[email protected]>
Date: Tue Jul 8 17:01:52 2014 +0200
Cleanups
* Removal of commented-out code
* Doxygen documentations
* Reorder of class declarations: MFC, public, protected, private
* Removal of unused declarations
... just the usual stuff to enhance maintenability.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 142bd36cbe96c8dd51c1c7cda9322f7ab11a81e7
Author: Tobias Lorenz <[email protected]>
Date: Mon Jul 7 18:57:13 2014 +0200
Cleanups in NSIS script
* spaces/blanks instead of tabs to suit every text editor
* remove trailing spaces at end of line
* common indentation
* all IfFileExists... Delete clauses where ineffective! They just did Delete always.
* No need for patch script anymore. This is long time solved...
Signed-off-by: Tobias Lorenz <[email protected]>
commit b3cb99ff777030f7212abc7f1c06f62d2985bed7
Author: Tobias Lorenz <[email protected]>
Date: Mon Jul 7 18:27:35 2014 +0200
Add Version Information to NSIS script.
The VI... commands define the information for the installer executable.
The WriteReg... commands define the information for the uninstaller,
so for the list of installed programs in the control panel.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 1132d629c5a727e9f248938d2bc940031da661d9
Merge: ead418c f4ed63a
Author: Tobias Lorenz <[email protected]>
Date: Thu Jun 26 16:09:51 2014 +0200
Merge branch 'master' of https://[email protected]/rbei-etas/busmaster.git
commit ead418c6ce0946790c4cf462effd75c2e4783ae3
Author: Tobias Lorenz <[email protected]>
Date: Thu Jun 26 16:08:56 2014 +0200
Just cleanups...
* removed filter functionality for DILs that don't provide this.
* removed redundant defines and enums
* removed CRT_SECURE_NO_DEPRECATE, so that we see what needs to be changed
* removed unused MCNet stuff
Signed-off-by: Tobias Lorenz <[email protected]>
commit f4ed63a8d3c3ecd27c5a4e385bd7ef49926bca5b
Merge: f95ea79 b4440cc
Author: Tobias Lorenz <[email protected]>
Date: Tue Jun 24 16:47:13 2014 +0200
Merge pull request #713 from GT-Derka/master
Solves #711
commit b4440cccb738d7d80fdf5e028d6c081c3c1c99fb
Author: AndreasDerksen <[email protected]>
Date: Tue Jun 24 16:42:48 2014 +0200
Solves #711
Corrected dimensions of column-widths to get a nicer look onto
channel-column. (1)
Fixed problem with channel-selection-dropdown. (2)
Fixed problem that the channel of message-RX is ignored. (4)
commit f95ea793b82604611dcd146a0fed468833f8a560
Author: Tobias Lorenz <[email protected]>
Date: Wed Jun 18 17:11:14 2014 +0200
Added/Corrected Doxygen comments throughout TXWindow.
Signed-off-by: Tobias Lorenz <[email protected]>
commit d72d9ec1f9152d33fc296b7c471a5b2c38c20e6a
Author: Tobias Lorenz <[email protected]>
Date: Wed Jun 18 09:16:48 2014 +0200
Updated gitignore.
.project is an Eclipse project file. As we don't use it and
it's not even in the Sources directory, I've deleted it.
manifest files are created as part of the build and thus
shouldn't be in the repository.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 13bd79074a637a31ed87f12343ce76969926f693
Author: Tobias Lorenz <[email protected]>
Date: Wed Jun 18 09:08:10 2014 +0200
Rename *_ETAS_BOA_2_0 to *_ETAS_BOA_2.
This is in line now with the versioning scheme of BOA and the intention
to keep the v2 API stable across minor release. We already reached v2.2.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 29d46ecc01f92daec3ad34f46a130d9254857688
Author: Tobias Lorenz <[email protected]>
Date: Wed Jun 18 08:15:35 2014 +0200
Gettext localization improved and "de" added.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 5cf2e7310b3a2170c2e9153477534b0c99485b00
Author: Tobias Lorenz <[email protected]>
Date: Tue Jun 17 09:31:51 2014 +0200
Changes to make xgettext happy.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 48cf6c8c3546aaaeae35cfc4dac12386de248c99
Merge: 0a54b18 4ddadd0
Author: Tobias Lorenz <[email protected]>
Date: Mon Jun 16 15:49:49 2014 +0200
Merge branch 'master' of https://github.com/rbei-etas/busmaster
commit 0a54b18e3eb963c023e4e90860ba4a3039361caf
Author: Tobias Lorenz <[email protected]>
Date: Mon Jun 16 15:48:43 2014 +0200
Enhancements to MultiLanguageSupport header/source code
* MultiLanguageSupport.h contain way to many unnecessary includes
* g_hLibIntl shouldn't be exposed. So added load/unload functions.
* All g_pf* pointers shouldn't be exposed. They are now internal.
* Some fixes for unused parameters.
* One fix for duplicate macro.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 4ddadd0fee1fd510dcc2aa1f83cb6539e2a38d3a
Author: saravanan <[email protected]>
Date: Mon Jun 16 15:26:36 2014 +0530
Updated test setup link
commit 53554394b1e6a509e13aa861ad4690c1a2859c7b
Author: saravanan <[email protected]>
Date: Mon Jun 16 14:32:25 2014 +0530
updated
commit 16e350a2585b61f55db1e3a4c688c97f76e86ac8
Author: saravanan <[email protected]>
Date: Mon Jun 16 14:18:26 2014 +0530
Updated version info and style compliance changes
commit e51e7156241028056d9fc846776e34e619fae66d
Author: saravanan <[email protected]>
Date: Mon Jun 16 12:52:28 2014 +0530
Added LIN PEAK and UDS projects
commit 609fe41de29f3f55346995dff6019426d5259a89
Author: saravanan <[email protected]>
Date: Mon Jun 16 12:40:39 2014 +0530
BusMaster v2.4.0 changes
commit 9e8918c3607780ead7143e9c3d68e278c9b37d0e
Author: Tobias Lorenz <[email protected]>
Date: Fri Jun 6 14:51:58 2014 +0200
Fix some warnings of categories C4018, C4100, C4129, C4244, C4553, C4996.
What else...
* Replaced MS-specific _stprintf with standard sprintf.
* FilterName migrated from char[] to std::string.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 681ba0331e22bd458916f4d5fec0283786dcabb0
Author: Tobias Lorenz <[email protected]>
Date: Fri Jun 6 11:44:06 2014 +0200
Some cleanups and improvements of source code documentation.
I would like to understand what RefTimeKeeper does...
Signed-off-by: Tobias Lorenz <[email protected]>
commit 855dce9db9e459592e8c97fefc5290ed63d7fa83
Author: Tobias Lorenz <[email protected]>
Date: Thu Jun 5 18:24:30 2014 +0200
Some cleanups and improvements of source code documentation.
Signed-off-by: Tobias Lorenz <[email protected]>
commit b638d5b87c2821ae2ebcb1d0794496f95dd148fc
Author: Tobias Lorenz <[email protected]>
Date: Thu Jun 5 17:16:31 2014 +0200
Enhancements to time handling
* GetTimeModeMapping argument QueryTickCount is now "&" instead of "*"
* It seems SYSTEMTIME can be assigned ("=") also. No need for memcpy.
* Fixed some signed/unsigned warnings.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 78197e041b805aed1565334182ac788a2a83bd8f
Author: Tobias Lorenz <[email protected]>
Date: Thu Jun 5 15:21:11 2014 +0200
Fix some C4005, C4018, C4100, C4101, C4204, C4245, C4505 and C4805 warnings.
... too many changes.
I doesn't seem to brake anything, but running complete test suite should be done...
Signed-off-by: Tobias Lorenz <[email protected]>
commit e5d1c60e65c3f86a50aa230d6cfa051e2a9835f2
Author: Tobias Lorenz <[email protected]>
Date: Wed Jun 4 15:48:58 2014 +0200
Fix some C4100 and C4505 warnings.
Signed-off-by: Tobias Lorenz <[email protected]>
commit eef51aeba1a6b43e6479b8bdfd7f3866240f6b2e
Author: Tobias Lorenz <[email protected]>
Date: Wed Jun 4 14:01:28 2014 +0200
Fix some minor C4800 warnings.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 7a3731a797f602547da9f9be225f656d74477689
Author: Tobias Lorenz <[email protected]>
Date: Wed Jun 4 10:31:31 2014 +0200
Auto generated DMGraph files should be in the repository.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 87ee289bd978709b8434f9290b15a3fd366693f4
Author: Tobias Lorenz <[email protected]>
Date: Wed Jun 4 10:30:14 2014 +0200
Fix some of the C4996 warnings.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 9f9dc956a874c1fda73c8abc24a4e9a0cbee7c01
Author: Tobias Lorenz <[email protected]>
Date: Wed Jun 4 09:08:35 2014 +0200
Fix C4505 warnings
Signed-off-by: Tobias Lorenz <[email protected]>
commit 164c6c64d7e2e27897bf0e7a911e8f02a12051ce
Author: Tobias Lorenz <[email protected]>
Date: Tue Jun 3 16:35:41 2014 +0200
Fix warning C4927.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 606c2d571155265d3ad872a0c243c503de01baa0
Author: Tobias Lorenz <[email protected]>
Date: Tue Jun 3 16:28:21 2014 +0200
Replace (Windows specific) VOID with (C++ standard) void.
Signed-off-by: Tobias Lorenz <[email protected]>
commit b5730f1411fb71a2b66f752786a2d5d26041bf13
Author: Tobias Lorenz <[email protected]>
Date: Tue Jun 3 16:08:36 2014 +0200
Remove unnecessary returns.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 0ef1cd3d0ebb58e4bf55485b5e07ca44f65bd890
Author: Tobias Lorenz <[email protected]>
Date: Tue Jun 3 15:05:19 2014 +0200
Fix C4553 warnings.
Signed-off-by: Tobias Lorenz <[email protected]>
commit c5ca4ce75a9cbf1ec0ac157c480fdeb8c2872eba
Author: Tobias Lorenz <[email protected]>
Date: Tue Jun 3 15:04:23 2014 +0200
Fix C4800 warnings.
Signed-off-by: Tobias Lorenz <[email protected]>
commit d01d7a44a0746e1d6dbdc8509f0712708c1ff788
Author: Tobias Lorenz <[email protected]>
Date: Tue Jun 3 13:05:14 2014 +0200
Fix C4715 warnings.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 469dd6c0dfd659f40efbcc1bbb1553b9585be7a0
Author: Tobias Lorenz <[email protected]>
Date: Tue Jun 3 12:39:49 2014 +0200
Fix warnings C4100, C4101.
Signed-off-by: Tobias Lorenz <[email protected]>
commit ce10853349a19d8c63749f2afdb7388242335d71
Author: Tobias Lorenz <[email protected]>
Date: Tue Jun 3 11:59:24 2014 +0200
Fix C4099 warnings
Signed-off-by: Tobias Lorenz <[email protected]>
commit ac3b2a6923b7bce5093237789749a75b8a04163c
Author: Tobias Lorenz <[email protected]>
Date: Tue Jun 3 11:39:30 2014 +0200
Fixed many C4005 warnings and clean up related files
Signed-off-by: Tobias Lorenz <[email protected]>
commit 0b7893df3a9bea6275cc6b0d5b8d874a8e03cc53
Merge: 443288f 6531088
Author: Tobias Lorenz <[email protected]>
Date: Tue Jun 3 10:33:06 2014 +0200
Merge branch 'master' of https://github.com/GT-Derka/busmaster into GT-Derka-master
Conflicts:
Sources/EXTERNAL/DmGraph/DMGraph.h
Sources/EXTERNAL/DmGraph/DMGraph_i.c
Sources/EXTERNAL/DmGraph/DMGraph_p.c
Sources/TestSetupEditorGUI/TSEditorGUI.cpp
Sources/TestSetupEditorLib/TestCaseEntity.cpp
Sources/TestSetupEditorLib/VerifyEntity.cpp
Signed-off-by: Tobias Lorenz <[email protected]>
commit 443288fa7293b422f3c1bbe077012d8bc9297683
Author: Tobias Lorenz <[email protected]>
Date: Mon Jun 2 17:36:44 2014 +0200
Fix more compiler warnings C4091 and cleanup related files.
Signed-off-by: Tobias Lorenz <[email protected]>
commit dbd9090f7fdb834069828c6f560caf105e09b9b3
Author: Tobias Lorenz <[email protected]>
Date: Wed May 28 19:10:36 2014 +0200
Changed NULL to nullptr and fixed the issues found that way.
Issues were assignments to incompatible datatypes, e.g. COLORREF, BOOL, ...
The compilation shows again less warnings now.
Signed-off-by: Tobias Lorenz <[email protected]>
commit fbd92760ca174887069381cfa9350602d59b970d
Author: Tobias Lorenz <[email protected]>
Date: Wed May 28 17:03:41 2014 +0200
Fixed many: warning C4100: 'nRepeatCount' : unreferenced formal parameter
Signed-off-by: Tobias Lorenz <[email protected]>
commit eba50a99e80cf7fc565ad2c6ea698daf7425eb45
Author: Tobias Lorenz <[email protected]>
Date: Wed May 28 13:43:40 2014 +0200
Fixes for cppcheck findings
* <error file="..\..\Sources\Application\BusmasterDump.cpp" line="20" id="unreadVariable" severity="style" msg="Variable 'hParent' is assigned a value that is never used."/>
* <error file="..\..\Sources\Application\BusmasterDump.cpp" line="51" id="unusedVariable" severity="style" msg="Unused variable: szScratch"/>
* <error file="..\..\Sources\Application\ChannelConfigurationDlg.cpp" line="174" id="variableScope" severity="style" msg="The scope of the variable 'chString' can be reduced."/>
* <error file="..\..\Sources\Application\ChannelConfigurationDlg.cpp" line="330" id="stlSize" severity="style" msg="Possible inefficient checking for 'ouClusterList' emptiness."/>
* <error file="..\..\Sources\Application\ChannelConfigurationDlg.cpp" line="342" id="postfixOperator" severity="style" msg="Prefer prefix ++/-- operators for non-primitive types."/>
* <error file="..\..\Sources\Application\ChannelConfigurationDlg.cpp" line="470" id="postfixOperator" severity="style" msg="Prefer prefix ++/-- operators for non-primitive types."/>
* <error file="..\..\Sources\Application\ChannelConfigurationDlg.cpp" line="497" id="unusedVariable" severity="style" msg="Unused variable: chBaudText"/>
* <error file="..\..\Sources\Application\ChannelConfigurationDlg.cpp" line="528" id="postfixOperator" severity="style" msg="Prefer prefix ++/-- operators for non-primitive types."/>
* <error file="..\..\Sources\Application\ChannelConfigurationDlg.cpp" line="540" id="unreadVariable" severity="style" msg="Variable 'nResult' is assigned a value that is never used."/>
* <error file="..\..\Sources\Application\ChannelConfigurationDlg.cpp" line="570" id="postfixOperator" severity="style" msg="Prefer prefix ++/-- operators for non-primitive types."/>
* <error file="..\..\Sources\Application\ChannelConfigurationDlg.cpp" line="590" id="postfixOperator" severity="style" msg="Prefer prefix ++/-- operators for non-primitive types."/>
* <error file="..\..\Sources\Application\ConfigAdapter.cpp" line="470" id="unreadVariable" severity="style" msg="Variable 'pbyTemp' is assigned a value that is never used."/>
* <error file="..\..\Sources\Application\ConfigDetails.cpp" line="1742" id="unreadVariable" severity="style" msg="Variable 'bIsLoading' is assigned a value that is never used."/>
* <error file="..\..\Sources\Application\ElementSelection.cpp" line="194" id="unreadVariable" severity="style" msg="Variable 'm_bCreateSuccess' is assigned a value that is never used."/>
* <error file="..\..\Sources\Application\FIBEX_Structs.h" line="378" id="memsetClass" severity="error" msg="Using 'memset' on struct that contains a 'std::string'."/>
* <error file="..\..\Sources\Application\FlexRayDatabaseDissociateDlg.cpp" line="149" id="unreadVariable" severity="style" msg="Variable 'bDBDeleted' is assigned a value that is never used."/>
* <error file="..\..\Sources\Application\FlexRayNetworkStatsDlg.cpp" line="241" id="unreadVariable" severity="style" msg="Variable 'lDataValue' is assigned a value that is never used."/>
* <error file="..\..\Sources\Application\FlexRayNetworkStatsDlg.cpp" line="244" id="unreadVariable" severity="style" msg="Variable 'lTotalB' is assigned a value that is never used."/>
* <error file="..\..\Sources\Application\MainFrm.cpp" line="18421" id="bufferAccessOutOfBounds" severity="error" msg="Buffer is accessed out of bounds: m_abLogOnConnect"/>
* <error file="..\..\Sources\Application\NetworkStatistics.cpp" line="529" id="unreadVariable" severity="style" msg="Variable 'nOrder' is assigned a value that is never used."/>
* <error file="..\..\Sources\Application\NetworkStatistics.cpp" line="610" id="unreadVariable" severity="style" msg="Variable 'bIsStatCreated' is assigned a value that is never used."/>
* <error file="..\..\Sources\Application\NotificWnd.cpp" line="297" id="unreadVariable" severity="style" msg="Variable 'lpPreviousCount' is assigned a value that is never used."/>
* <error file="..\..\Sources\Application\NotificWnd.cpp" line="306" id="variableScope" severity="style" msg="The scope of the variable 's_nDx' can be reduced."/>
* <error file="..\..\Sources\Application\NotificWnd.cpp" line="388" id="unreadVariable" severity="style" msg="Variable 'tempBuffAddress' is assigned a value that is never used."/>
* <error file="..\..\Sources\Application\NotificWnd.cpp" line="501" id="unreadVariable" severity="style" msg="Variable 'tempBuffAddress' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_ETAS_BOA\HardwareListing.cpp" line="620" id="stlSize" severity="style" msg="Possible inefficient checking for 'mHardwareListMap' emptiness."/>
* <error file="..\..\Sources\CAN_ICS_neoVI\CAN_ICS_neoVI.cpp" line="1032" id="unreadVariable" severity="style" msg="Variable 'nReturn' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_ICS_neoVI\CAN_ICS_neoVI.cpp" line="1491" id="unreadVariable" severity="style" msg="Variable 'nResult' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_ICS_neoVI\CAN_ICS_neoVI.cpp" line="3099" id="unreadVariable" severity="style" msg="Variable 'iRetVal' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_ICS_neoVI\CAN_ICS_neoVI.cpp" line="3113" id="unreadVariable" severity="style" msg="Variable 'iRetVal' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_ICS_neoVI\CAN_ICS_neoVI.cpp" line="3185" id="unreadVariable" severity="style" msg="Variable 'iRetVal' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_ICS_neoVI\HardwareListing.cpp" line="661" id="unreadVariable" severity="style" msg="Variable 'nSelected' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_ICS_neoVI\HardwareListing.cpp" line="666" id="unreadVariable" severity="style" msg="Variable 'nArrayIndex' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_ISOLAR_EVE_VCAN\CAN_ISOLAR_EVE_VCAN.cpp" line="158" id="unreadVariable" severity="style" msg="Variable 'ClientId' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_ISOLAR_EVE_VCAN\CAN_ISOLAR_EVE_VCAN.cpp" line="159" id="unreadVariable" severity="style" msg="Variable 'Index' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_ISOLAR_EVE_VCAN\CAN_ISOLAR_EVE_VCAN.cpp" line="456" id="unreadVariable" severity="style" msg="Variable 'nStrLen' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_ISOLAR_EVE_VCAN\CAN_ISOLAR_EVE_VCAN.cpp" line="829" id="unreadVariable" severity="style" msg="Variable 'sAckMap' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_IXXAT_VCI\HardwareListing.cpp" line="661" id="unreadVariable" severity="style" msg="Variable 'nSelected' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_IXXAT_VCI\HardwareListing.cpp" line="666" id="unreadVariable" severity="style" msg="Variable 'nArrayIndex' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_Kvaser_CAN\AcceptanceFilterDlg.cpp" line="170" id="unreadVariable" severity="style" msg="Variable 'bButtonChecked' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_Kvaser_CAN\CAN_Kvaser_CAN.cpp" line="1561" id="unreadVariable" severity="style" msg="Variable 'nStatus' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_Kvaser_CAN\CAN_Kvaser_CAN.cpp" line="1675" id="unreadVariable" severity="style" msg="Variable 'unClientIndex' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_Kvaser_CAN\CAN_Kvaser_CAN.cpp" line="1903" id="unreadVariable" severity="style" msg="Variable 's' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_Kvaser_CAN\CAN_Kvaser_CAN.cpp" line="1914" id="unreadVariable" severity="style" msg="Variable 's' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_Kvaser_CAN\CAN_Kvaser_CAN.cpp" line="2456" id="unreadVariable" severity="style" msg="Variable 'nStrLen' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_Kvaser_CAN\ChangeRegisters.cpp" line="807" id="unreadVariable" severity="style" msg="Variable 'unClockFreq' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_Kvaser_CAN\ChangeRegisters.cpp" line="1090" id="unreadVariable" severity="style" msg="Variable 'nColumnCount' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_Kvaser_CAN\ChangeRegisters.cpp" line="1769" id="unreadVariable" severity="style" msg="Variable 'pcStopStr' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_Kvaser_CAN\HardwareListing.cpp" line="659" id="unreadVariable" severity="style" msg="Variable 'nSelected' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_Kvaser_CAN\HardwareListing.cpp" line="664" id="unreadVariable" severity="style" msg="Variable 'nArrayIndex' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_NSI\AcceptanceFilterDlg.cpp" line="170" id="unreadVariable" severity="style" msg="Variable 'bButtonChecked' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_NSI\CAN_NSI.cpp" line="643" id="unreadVariable" severity="style" msg="Variable 'nStatus' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_NSI\CAN_NSI.cpp" line="914" id="unreadVariable" severity="style" msg="Variable 'nStrLen' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_NSI\CAN_NSI.cpp" line="1436" id="unreadVariable" severity="style" msg="Variable 'nChannelCount' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_NSI\CAN_NSI.cpp" line="1722" id="unreadVariable" severity="style" msg="Variable 'pchPCMCIA' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_NSI\CAN_NSI.cpp" line="1855" id="unreadVariable" severity="style" msg="Variable 'nUsedFlags' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_NSI\CAN_NSI.cpp" line="1902" id="unreadVariable" severity="style" msg="Variable 'unClientIndex' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_NSI\CAN_NSI.cpp" line="1916" id="unreadVariable" severity="style" msg="Variable 'ret' is assigned a value that is never used."/>
* <error file="..\..\Sources\CAN_NSI\CAN_NSI.cpp" line="1906" id="unreadVariable" severity="style" msg="Variable 'nUsedFlags' is assigned a value that is never used."/>
* <error file="..\..\Sources\DataTypes\Cluster.h" line="86" id="unreadVariable" severity="style" msg="Variable 'i' is assigned a value that is never used."/>
... and updated the cppcheck suppressions file.
Signed-off-by: Tobias Lorenz <[email protected]>
commit b9ddb5e879d1fabd4f53bc9d6786b456b72909fc
Author: Tobias Lorenz <[email protected]>
Date: Wed May 28 10:33:42 2014 +0200
Cleanups, especially get rid of "usage namespace ..."
"usage namespace" is in most coding standards not seen as good practice.
Especially when same classes are used in different namespaces, the
behavior is unpredictable. It also brings more clarity if
e.g. "std::string" is used instead of "string" only.
Also cleaned up many comments that doesn't help. Including names of
developers who contributed this code and large chunks of uncommented code.
Both can be seen and retrieved vom the version control system (Git) anyway.
"#pragma once" is nowaydays supported in all compilers (gcc, vc). So no
need for include guards. It also seems to improve compilation speed.
There are still some issues left I've found:
* FlexRayDatabaseDissociateDlg.cpp: contains "sizeof(std::string)"
* XMLUtils.h: switch has duplicated case SW_SHOWMAXIMIZED=SW_MAXIMIZE=3
Signed-off-by: Tobias Lorenz <[email protected]>
commit d1d8deba1a5172c8181c09f72876d27551d9dabb
Author: Tobias Lorenz <[email protected]>
Date: Mon May 26 18:37:56 2014 +0200
Updated gitignore regarding new modules.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 7923413b71a8cbad2d7dc7986281d94ecaeda7b2
Author: Tobias Lorenz <[email protected]>
Date: Thu May 22 17:32:42 2014 +0200
Cleanup of code.
* Get rid of unused constants / variables / resources / files.
* Improve coding style
* Improve documentation
Signed-off-by: Tobias Lorenz <[email protected]>
commit 558e89b9e3525d349901ba92f802c5a355e4a407
Author: Tobias Lorenz <[email protected]>
Date: Thu May 22 10:21:20 2014 +0200
Bug fix for sending CAN FD frames will DLC>8.
Signed-off-by: Tobias Lorenz <[email protected]>
commit bb02fa73cfbc6d920be86d32c9ffdf130308e799
Author: Tobias Lorenz <[email protected]>
Date: Thu May 22 10:20:51 2014 +0200
Documentation enhancements and code cleanups.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 653108850d3fe15ca2356156d33a928a2396faf8
Author: AndreasDerksen <[email protected]>
Date: Wed May 21 15:47:55 2014 +0200
Added function to select channel in Test Automation (for Send & Verify) - Issue #244
Added function to select channel in Test Automation (for Send & Verify)
- Issue #244
Due to Issue #697 channel-selection is not available for VerifyResponse
Resolved wrong line-coloring #698
commit da44e18e6bc7b6e5e612365561d8793d0c521e7d
Author: AndreasDerksen <[email protected]>
Date: Wed May 21 15:28:39 2014 +0200
Revert "Channel-Selection in Testautomation"
This reverts commit c320fa4c5c48884d2da2d6e4d72c02a0adefb4a7.
commit d6bd4690da4753dc7bb6f4f23feb22a29026a623
Author: Tobias Lorenz <[email protected]>
Date: Wed May 21 11:36:21 2014 +0200
ERROR and ERRORS in Test Automation were inconstent.
.. inconsistent regarding the documentation, but also regarding the read/write operations.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 0155c45e5146f31f00f522e2dbc3ffcbddb20726
Author: Tobias Lorenz <[email protected]>
Date: Wed May 21 09:42:44 2014 +0200
Installation of TestAutomation example.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 7701883379bac02157fad1c53b97f7ef4a4b1ae1
Author: Tobias Lorenz <[email protected]>
Date: Tue May 20 18:00:03 2014 +0200
Test Automation example added/improved.
The SampleTestSetupFile.xml was moved from the help documents folder to an own Examples folder.
In order to validate the file an XSD schema file was added.
In order to use the file a corresponding dbf file was added.
Signed-off-by: Tobias Lorenz <[email protected]>
commit c320fa4c5c48884d2da2d6e4d72c02a0adefb4a7
Author: AndreasDerksen <[email protected]>
Date: Tue May 20 15:27:28 2014 +0200
Channel-Selection in Testautomation
vcxproj: Additional dependencies only
other: Introduced Channel-Selection for Sand and Verify in
TestAutomationen
commit 884b8300ce479890d31a8eda80b82ab20087c299
Author: Tobias Lorenz <[email protected]>
Date: Fri May 9 11:44:54 2014 +0200
Links to TestCocoon updated. Closes #694.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 715a56e4b84e7755bcbd84405bedb01b916b32aa
Merge: b75fc20 7137890
Author: Tobias Lorenz <[email protected]>
Date: Wed Apr 30 09:05:00 2014 +0200
Merge branch 'master' of https://github.com/rbei-etas/busmaster
Conflicts:
Installation Setup/BUSMASTER INSTALL SCRIPT.nsi
commit 71378909ea77eb330fb3b504ee232c785a4fc871
Author: saravanan <[email protected]>
Date: Thu Apr 3 18:45:22 2014 +0530
updated version info
commit 26eda7dfa971db95ea44705d7dc3fc8b667fe50a
Author: saravanan <[email protected]>
Date: Thu Apr 3 18:03:43 2014 +0530
Updated for linking
commit db624254f4abf19bdb2e81927678b4fdd3b37852
Author: saravanan <[email protected]>
Date: Thu Apr 3 15:52:09 2014 +0530
updated for v2.3.0 changes
commit 8e0feafe8bddd8e4f9f0291ed77aa465616456b7
Author: saravanan <[email protected]>
Date: Thu Apr 3 11:51:18 2014 +0530
Updated for v2.3.0
commit b75fc205636cf06a7ad6a38ec37a316a49953d83
Author: Tobias Lorenz <[email protected]>
Date: Wed Mar 26 13:00:01 2014 +0100
Added timestamp calculation for MHS Tiny-CAN driver
Signed-off-by: Tobias Lorenz <[email protected]>
commit ba724429bd24b9ed02d59ab833c4b7f303c1f899
Author: Tobias Lorenz <[email protected]>
Date: Tue Mar 25 18:54:15 2014 +0100
Improve include path in vcxproj-files and some h-files.
Signed-off-by: Tobias Lorenz <[email protected]>
commit 12eaa61b1ac769493de7b21ef303ffe27e8f3456
Author: Tobias Lorenz <[email protected]>
Date: Tue Mar 25 18:52:49 2014 +0100
Extend FlexRay support from ETAS BOA v1.5 to v1.4 and v2.0
Signed-off-by: Tobias Lorenz <[email protected]>
commit 1ef5ff2e24da50102096b5142631269726273e94
Author: saravanan <[email protected]>
Date: Tue Mar 25 18:57:36 2014 +0530
Updated for Filters, Message Window configuration, Signal Watch and Network statistics for LIN
commit 7202b351df3660a79662bf4a104d5a07c2194468
Author: saravanan <[email protected]>
Date: Tue Mar 25 18:53:46 2014 +0530
Updated for Signal Watch, Network statistics, Filters and Message Window configuration for LIN
commit f3fcb7ebebfa872108d8d015b30f470af33f0041
Author: Prathiba <[email protected]>
Date: Mon Feb 24 16:24:46 2014 +0530
Updated
commit 98a106e175fc64290f00e9e85e54b5ccdd52535d
Author: saravanan <[email protected]>
Date: Fri Feb 21 17:03:52 2014 +0530
updated version
commit 5897449712163bc82bfb881f78de0bee29996075
Author: saravanan <[email protected]>
Date: Fri Feb 21 16:18:09 2014 +0530