-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathChangeLog
1572 lines (1066 loc) · 61.2 KB
/
ChangeLog
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
2012-05-16 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/biosemi.c, tests/fakelibs/activetwo.c: biosemi: fix
issues detected with valgrind
2012-05-09 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* doc/egd_open.3.in: Make egd_open manpage architecture independent
2012-05-09 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* autogen.sh, configure.ac, doc/examples/Makefile.am,
gnulib-local/lib/portable-time.h,
gnulib-local/modules/clock-functions: Use gnulib module time (more
standard time.h) Don't build saw example if time.h do not declare clock_nanosleep
2012-05-09 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac, doc/examples/Makefile.am, doc/examples/README,
doc/examples/plugin/Makefile.in, doc/examples/plugin/README,
doc/examples/plugin/saw.c: Stop making examples architecture
specific This implies stopping exporting compat folder in examples.
2012-04-25 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/core/core.c: Remove implementation of the useless getopt
2012-04-24 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac, doc/Makefile.am, doc/eegdev-biosemi.5,
doc/eegdev-datafile.5, doc/eegdev-gtec.5, doc/eegdev-neurosky.5,
doc/eegdev-open-options.5, doc/eegdev-tobiia.5, doc/egd_open.3.in,
src/core/conffile.y, src/core/configuration.h, src/core/confline.y,
src/core/opendev.c, src/plugins/gtec.c, tests/Makefile.am,
tests/conffiles/datafile.conf, tests/conffiles/eegdev.conf,
tests/conffiles/gtec.conf, tests/sysgtec.c: Integrate the support
for configuration parsing The changes have been integrated in the device opening part of the
core library. Some tests and manpages have been updated.
2012-04-24 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac, src/core/Makefile.am, src/core/conffile.h,
src/core/conffile.l, src/core/conffile.y, src/core/configuration.c,
src/core/configuration.h, src/core/confline.h, src/core/confline.l,
src/core/confline.y: Add configuration parsing logic (not used yet) This commit adds the machinery for parsing configuration file and
string. It is not integrated yet with the code of the library (not
called yet) but is is integrated with its build system.
2012-04-24 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* doc/examples/plugin/saw.c, src/core/core.c,
src/core/eegdev-pluginapi.h, src/core/opendev.c,
src/plugins/biosemi.c, src/plugins/fileout.c, src/plugins/gtec.c,
src/plugins/neurosky.c, src/plugins/tobiia.c: Change the plugin
interface for options passing Now plugins declare the options they supported (along with their
default values) and the core library, when calling the device open
function, will pass the array of settings that the plugin expect.
2012-04-16 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/Makefile.am, src/plugins/biosemi.c,
src/plugins/usb_comm.c, src/plugins/usb_comm.h,
tests/fakelibs/activetwo.c: biosemi: Modify implementation of
activetwo backend This new implementation integrates libusb backend. This makes it
simpler, faster and smaller. It should also be more robust to
intense workload.
2012-03-21 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* Makefile.am, README, README_build, autogen.sh, m4/gnulib-cache.m4:
Use autogen.sh to import the gnulib package
2012-03-20 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/tobiia.c, tests/systobiia.c: tobiia: use NULL as
default host (local service)
2012-03-20 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/tobiia.c: tobiia: robustify name resolution
2012-03-20 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac, m4/gnulib-cache.m4, src/plugins/Makefile.am:
eegfile: Use gnulib regex replacement functions
2012-03-16 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/Makefile.am, src/plugins/cross-socket.h,
src/plugins/tobiia.c, tests/fakelibs/tia-server.c: tobiia: stop
using cross-socket.h Assume now that gnulib modules provides all the necessary
replacement functions for the POSIX socket API. Delete
cross-socket.h
2012-03-16 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac, m4/gnulib-cache.m4, src/plugins/Makefile.am,
src/plugins/cross-socket.h, tests/fakelibs/Makefile.am,
tests/fakelibs/tia-server.c: Use gnulib socket functions
2012-03-20 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/Makefile.am, src/plugins/device-helper.c,
tests/fakelibs/Makefile.am: Fix use of gnulib replacements
2012-03-19 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/core/coreinternals.h: Add missing includes (pthread.h) in
coreinternals.h
2012-03-14 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac, m4/gnulib-cache.m4, src/plugins/biosemi.c,
src/plugins/usb_comm.c, src/plugins/usb_comm.h,
tests/fakelibs/activetwo.c: biosemi: Add support for big endian
platforms
2012-03-02 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/core/core.c: Make egdi_create_eegdev function more dense
2012-03-02 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* tests/sysgtec.c: gtec: fix warnings in test program
2012-03-02 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/core/opendev.c, src/plugins/biosemi.c, src/plugins/gtec.c,
src/plugins/tobiia.c: Make string formatting more secure and fix
some of them The fix: snprintf always happens a null character at the end of the
string (unless the length is 0) so using sizeof()-1 is a mistake.
2012-02-23 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/core/core.c, src/core/eegdev-pluginapi.h: Remove pthread
include from eegdev-pluginapi.h Pthread is no longer needed for the definition of the plugin API.
This is a big advantage since now plugins are free to use the
threading library of their choice (or none).
2012-02-22 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* gnulib-local/lib/clock_gettime.c,
gnulib-local/lib/clock_nanosleep.c, gnulib-local/lib/decl-dlfcn.h,
gnulib-local/lib/dlopen.c, gnulib-local/lib/portable-time.h: Remove
visibility attributes from replacement source code
2012-02-22 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac, doc/examples/Makefile.am, gnulib-local/Makefile.am,
gnulib-local/lib/clock_gettime.c,
gnulib-local/lib/clock_nanosleep.c,
gnulib-local/lib/portable-time.h,
gnulib-local/modules/clock-functions, lib/.dummy, lib/Makefile.am,
lib/clock_gettime.c, lib/clock_nanosleep.c, lib/portable-time.h,
m4/gnulib-cache.m4, src/plugins/Makefile.am,
tests/fakelibs/Makefile.am: Move clock funcs in module Nothing is in lib/ now
2012-02-22 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* gnulib-local/Makefile.am, gnulib-local/modules/dlopen,
gnulib-local/modules/search-winfuncs: Create a separated gnulib
module for m4/funcarg.m4
2012-02-20 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* Makefile.am, configure.ac, gnulib-local/Makefile.am,
gnulib-local/lib/decl-dlfcn.h, gnulib-local/lib/dlopen.c,
gnulib-local/m4/funcarg.m4, gnulib-local/modules/dlopen,
lib/Makefile.am, lib/decl-dlfcn.h, lib/dlopen.c, m4/funcarg.m4,
m4/gnulib-cache.m4, src/core/Makefile.am, tests/Makefile.am: Move
dlopen.c as gnulib module
2012-02-20 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* Makefile.am, autogen.sh, configure.ac, doc/examples/Makefile.am,
lib/Makefile.am, lib/portability.c, m4/gnulib-cache.m4,
src/core/Makefile.am, src/plugins/Makefile.am, tests/Makefile.am,
tests/fakelibs/Makefile.am: Start using gnulib for replacement This is the initial steps
2012-02-11 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/tobiia.c, tests/fakelibs/tia-server.c: tobiia: Ensure
all data access is aligned This fixes the SIGBUS signal sent when executed on mipsel. This
should also fix the execution on many other architecture that
requires aligned data access.
2012-02-05 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac, tests/fakelibs/activetwo.c: Implement
libusb_fill_bulk_transfer in fake libusb Implement this function if it is not inmplemented as static inline
in libusb header. This fixes the test of freeBSD architecture.
2012-02-01 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* ChangeLog, NEWS, configure.ac: Release 0.1
2012-01-25 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* tests/fakelibs/tia-server.c: tobiia: Fix IPv6 support in test On some configuration, a AF_INET6 socket may be configured by
default with the flag IPV6_V6ONLY on. This commit makes sure that
the server socket created in the test is compatible with
IPv4-to-IPv6 adresses.
2012-01-25 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* tests/fakelibs/tia-server.c, tests/fakelibs/tia-server.h,
tests/systobiia.c: tobiia: fix test hanging in case of failure Make also the fake server creation failure more verbose
2012-01-23 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* doc/egd_sensor_type.3: Fix glitch in egd_sensor_type manpage
2012-01-20 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/tobiia.c, tests/fakelibs/tia-server.c: tobiia: Fix
support for IPv6
2012-01-19 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* ChangeLog, NEWS: Release eegdev-0.0
2012-01-19 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* doc/Makefile.am, doc/examples/Makefile.am: fix tarball
distribution
2012-01-19 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* doc/examples/plugin/saw.c, src/core/Makefile.am, src/core/core.c,
src/core/coreinternals.h, src/core/eegdev-common.h,
src/core/eegdev-pluginapi.h, src/plugins/biosemi.c,
src/plugins/device-helper.c, src/plugins/device-helper.h,
src/plugins/fileout.c, src/plugins/gtec.c, src/plugins/neurosky.c,
src/plugins/tobiia.c, tests/verifycast.c, tests/verifysplit.c:
rename eegdev-common.h into eegdev-pluginapi.h
2012-01-19 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/core/coreinternals.h, src/core/eegdev-common.h,
src/core/eegdev.h: cleanup exported headers
2012-01-08 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/core/core.c, src/core/eegdev-common.h, tests/Makefile.am: Adds
get_stype to the core interface for plugins This pointer exposes the function egd_sensor_type in the plugin
interface so that thay can reliably use a custom sensor type.
2012-01-06 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/core/sensortypes.c: Allows custom sensor type to be added
2011-12-26 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* doc/Makefile.am, doc/egd_acq_setup.3, doc/egd_channel_info.3,
doc/egd_get_cap.3, doc/egd_get_data.3, doc/egd_get_numch.3,
doc/egd_sensor_name.3, doc/egd_sensor_type.3,
doc/examples/library-usage/acquisition.c,
doc/examples/library-usage/eegdev_acq.c, src/core/Makefile.am,
src/core/eegdev.h, src/core/sensortypes.c, tests/sysbiosemi.c,
tests/syseegfile.c, tests/sysgtec.c, tests/sysneurosky.c,
tests/systobiia.c: Deprecates EGD_EEG/EGD_SENSOR/EGD_TRIGGER usage
2011-11-29 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac, src/plugins/neurosky.c: neurosky: Add automatic
connection This way, user can connect to the device without root setting up a
/dev/rfcomm0 device
2011-11-29 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/neurosky.c: neurosky bugfix: segfault when getting
device identification
2012-01-16 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/tobiia.c: tobiia: Improve failure path when opening
device
2012-01-16 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* doc/examples/plugin/saw.c, src/core/core.c,
src/core/coreinternals.h, src/core/eegdev-common.h,
src/core/opendev.c, src/plugins/biosemi.c,
src/plugins/device-helper.c, src/plugins/device-helper.h,
src/plugins/fileout.c, src/plugins/gtec.c, src/plugins/neurosky.c,
src/plugins/tobiia.c, tests/verifycast.c, tests/verifysplit.c:
Separate plugin code from core library implementation This commit do not export core library implementation into the
definition of the module specific structure. Instead, the structure
eegdev exports only one of its fields (devmodule) which contains the
core interface functions that the plugin can call. The device
specific structure is constructed from it (next to it in the
structure layout). This separation avoid to break the plugin ABI/API
whenever a change is nade in the core library.
2012-01-13 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/biosemi.c: biosemi: report handshake failure with
runacq
2012-01-13 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/biosemi.c: biosemi: tracking synchro depends only on
local var
2012-01-13 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* doc/examples/plugin/saw.c, src/core/core.c,
src/core/eegdev-common.h, src/plugins/biosemi.c,
src/plugins/fileout.c, src/plugins/gtec.c, src/plugins/neurosky.c,
src/plugins/tobiia.c: Adds set_cap to core_interface Plugins are no longer allowed to set eegdev.cap without using this
interface
2012-01-12 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/tobiia.c: tobiia: Remove parsingdata struct from
tia_eegdev Parsing metainfo is now done by setting up a systemcap struct in
parsingdata which will be used to update the device capabilities
only if the whole parsing has succeeded.
2012-01-12 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* tests/systobiia.c: tobiia: fix warnings in tests
2012-01-08 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* README: Improve README about backend support options
2012-01-08 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* AUTHORS, README, configure.ac, doc/Makefile.am,
doc/examples/Makefile.am, src/core/Makefile.am, tests/Makefile.am:
Make compiling the core library optional However it is still the default
2011-12-28 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* doc/egd_acq_setup.3, doc/egd_channel_info.3, doc/egd_close.3,
doc/egd_get_cap.3, doc/egd_get_data.3, doc/egd_get_numch.3,
doc/egd_start.3: fix typos and correct groff code in manpages
2011-12-23 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* README: Update README
2011-08-13 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* configure.ac, doc/eegdev-open-options.5, src/plugins/Makefile.am,
src/plugins/cross-socket.h, src/plugins/tobiia.c,
tests/Makefile.am, tests/fakelibs/Makefile.am,
tests/fakelibs/tia-server.c, tests/fakelibs/tia-server.h,
tests/systobiia.c, tests/testfaketobiia.sh: Add tobi Interface A
plugin
2011-12-13 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/device-helper.h: Adds data field to struct egdich
2011-11-04 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/device-helper.h: Drop unnecessary const in struct
egdich This will avoid warnings while using it when a device backend
creates its list of channels
2011-12-22 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* lib/dlopen.c: bugfix: win32 build crash when using the result of
dlsym.
2011-12-19 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac, doc/examples/Makefile.am, doc/examples/README,
doc/examples/plugin/Makefile.in, doc/examples/plugin/README,
doc/examples/plugin/saw.c, doc/examples/testexamples.sh: Add saw
plugin as plugin example in doc/examples Install the plugin files examples/plugin. Part of the compatibility
layer is installed along them (because needed by them) in the
examples/compat folder.
2011-12-16 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac, doc/Makefile.am, doc/examples/Makefile.am,
doc/examples/Makefile.in, doc/examples/acquisition.c,
doc/examples/acquisition.h, doc/examples/eegdev_acq.c,
doc/examples/library-usage/Makefile.in,
doc/examples/library-usage/acquisition.c,
doc/examples/library-usage/acquisition.h,
doc/examples/library-usage/eegdev_acq.c,
doc/examples/library-usage/recinxdf.c, doc/examples/recinxdf.c: Move
examples into doc/examples/library-usage
2011-12-16 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* doc/examples/eegdev_acq.c: Remove "Press ENTER" from eegdev_acq.c
example
2011-12-16 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac: Add ifndef to config.h to fix pthread-win32 header
2011-12-16 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* lib/Makefile.am, lib/clock_gettime.c, lib/clock_gettime.h,
lib/clock_nanosleep.c, lib/clock_nanosleep.h, lib/convfiletime.h,
lib/portable-time.h, lib/timespec.h, src/core/Makefile.am,
src/plugins/Makefile.am, src/plugins/fileout.c, tests/Makefile.am,
tests/fakelibs/Makefile.am, tests/fakelibs/activetwo.c: Merge all
clock_* related replacement declarations This result into one header called portable-time.h that should be
used instead of time.h when using clock_* function
2011-12-14 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/device-helper.c: bugfix: out of bound read in
split_chgroup
2011-11-23 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* tests/fakelibs/Makefile.am, tests/fakelibs/activetwo.c: biosemi:
Make libfakeact2 compile on windows
2011-11-23 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* tests/sysbiosemi.c, tests/syseegfile.c, tests/sysgtec.c,
tests/sysneurosky.c: Make verbosity of tests optional
2011-11-22 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* lib/Makefile.am, lib/portability.c, src/core/Makefile.am,
src/plugins/Makefile.am, tests/Makefile.am: Rearrange package so
that 'make distcheck' works 'make distcheck' used to failed because of the multiple references
of LTLIBOBJS in different subdirs. Putting all LTLIBOBJS in a
convenience library fix this.
2011-11-21 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac, src/core/Makefile.am, src/plugins/Makefile.am,
tests/Makefile.am: Fix library/module dependencies Fix build system so that all modules and the core library are linked
against all of their dependencies (and no more).
2011-11-21 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/core/Makefile.am: bugfix: coreinternal.h is packaged instead
of coreinternals.h
2011-11-17 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/biosemi.c: biosemi bugfix: closing biosemi device
segfault
2011-11-17 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/plugins/biosemi.c: biosemi: Fix failure path of sweeping init
2011-11-10 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* tests/Makefile.am, tests/fakelibs/Makefile.am,
tests/fakelibs/activetwo.c, tests/fakelibs/fakeact2.h,
tests/fakelibs/time-utils.h, tests/sysbiosemi.c,
tests/testfakeact2.sh: biosemi: unit tests now a fake libusb library
2011-11-01 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/core/core.c, src/core/coreinternals.h,
src/core/eegdev-common.h, src/plugins/Makefile.am,
src/plugins/biosemi.c, src/plugins/device-helper.c,
src/plugins/fileout.c, src/plugins/gtec.c, src/plugins/neurosky.c,
tests/verifycast.c: Make plugin interface hidden All functions from the core library needed by the plugins are now
exported in the ci member of the base eegdev structure.
2011-11-01 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* configure.ac, lib/Makefile.am, lib/decl-dlfcn.h, lib/dlopen.c,
src/core/core.c, src/core/opendev.c, src/plugins/Makefile.am,
tests/Makefile.am: Provide dlopen replacement functions for win32
2011-10-27 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/core/core.c, src/core/coreinternals.h,
src/core/eegdev-common.h, src/core/opendev.c,
src/plugins/biosemi.c, src/plugins/fileout.c, src/plugins/gtec.c,
src/plugins/neurosky.c, tests/verifycast.c, tests/verifysplit.c:
Initialize eegdev base structure in the core library The initialization of the structure is moved from the backend into
the core library using the information advertised by each backend
module in the plugin info.
2011-10-27 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* Makefile.am, configure.ac, doc/Makefile.am, src/Makefile.am,
src/biosemi.c, src/core/Makefile.am, src/core/core.c,
src/core/coreinternals.h, src/core/eegdev-common.h,
src/core/eegdev.h, src/core/eegdev.pc.in, src/core/opendev.c,
src/core/typecast.c, src/device-helper.c, src/device-helper.h,
src/eegdev-common.h, src/eegdev-open.c, src/eegdev-types.c,
src/eegdev-types.h, src/eegdev.c, src/eegdev.h, src/eegdev.pc.in,
src/fileout.c, src/gtec.c, src/neurosky.c, src/plugins/Makefile.am,
src/plugins/biosemi.c, src/plugins/device-helper.c,
src/plugins/device-helper.h, src/plugins/fileout.c,
src/plugins/gtec.c, src/plugins/neurosky.c, src/plugins/usb_comm.c,
src/plugins/usb_comm.h, src/usb_comm.c, src/usb_comm.h,
tests/Makefile.am, tests/verifycast.c, tests/verifysplit.c: Split
src/ into src/core/ and src/plugins/
2011-10-27 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac, src/Makefile.am, tests/Makefile.am: core and plugins
depend on the strict necessary set of libs
2011-10-26 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* configure.ac, doc/egd_open.3, doc/egd_open.3.in, src/Makefile.am,
src/biosemi.c, src/device-helper.c, src/devices.h,
src/eegdev-common.h, src/eegdev-open.c, src/eegdev.c,
src/fileout.c, src/gtec.c, src/neurosky.c, tests/Makefile.am,
tests/verifycast.c: Separate backends into individual plugin modules As a consequence, the table of supported devices is removed. The
folder where plugins are searched can be modified by the
EEGDEV_PLUGINS_DIR environment variable.
2011-10-27 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/biosemi.c, src/eegdev-common.h, src/eegdev-types.h,
src/eegdev.c, src/fileout.c, src/gtec.c, src/neurosky.c: make
backends independent from eegdev-types.h
2011-10-27 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* src/eegdev-common.h, src/eegdev.c: Export device interface
functions
2011-11-03 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* configure.ac, src/Makefile.am, src/eegdev-procdev.h,
src/gtec-procdev.c, src/procdev-child.c, src/procdev-common.h,
src/procdev-parent.c, tests/fakelibs/Makefile.am: Remove procdev
from the development No backend uses it (gTec has x86_64 library now) so it is not tested
any longer. And it is going to slow down the development of new
feature. If it is needed, it may be taken and adapted from previous
commits.
2011-10-26 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* Makefile.am, debian/changelog, debian/compat, debian/control,
debian/copyright, debian/docs, debian/libeegdev0-dev.examples,
debian/libeegdev0-dev.install, debian/libeegdev0-dev.manpages,
debian/libeegdev0-free.install, debian/libeegdev0-free.manpages,
debian/libeegdev0-free.symbols, debian/libeegdev0-free.udev,
debian/libeegdev0-gtec.install, debian/libeegdev0-gtec.manpages,
debian/libeegdev0-gtec.symbols, debian/libeegdev0-gtec.udev,
debian/rules, debian/source/format: Remove debian packaging from the
main development branches
2011-10-25 Nicolas Bourdaud <nicolas.bourdaud@gmail.com>
* debian/changelog, debian/control, debian/source/format: debian:
update of the debian packaging (alpha8) - switch to "3.0 (native)" format - unversioned -dev package - Remove unncessary build-dependency on libc6-dev (build-essential). - Tighten build-dependency on debhelper to >= 7.0.50~.
2011-10-18 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/gtec.c: gtec: Add 200ms delay before master start This seems to fix synchronization issues that occurs sometimes
between slaves and master. Note that this is a hack: if the issue is
really a race condition between slaves and master acquisition start,
the delay does not solve it, just make it much less likely.
2011-10-18 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* debian/changelog, debian/rules: debian: build libeegdev0-gtec
conditionally (alpha7) Now debhelper will generate libeegdev0-gtec binary package only if
environment variable EEGDEV_BUILD_OPTIONS contains "withgtec". This
hack workaround the issue of dependency on the gUSBamp driver which
cannot be distributed.
2011-10-13 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* debian/changelog, debian/control: debian: stop using
ia32-libs-gtec (release alpha6)
2011-10-13 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* Makefile.am, debian/rules: debian: set the compilation flags in
debian/rules Flag -O3 is added by default to make the package. As consequence,
compilation flags are no longer passed to dpkg-buildpackage when
invoked with 'make dist-deb'. Instead flags are passed with the mean
of DPKG_BUILDPACKAGE_FLAGS environment variable.
2011-09-07 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* AUTHORS, lib/clock_gettime.c, lib/clock_gettime.h,
lib/clock_nanosleep.c, lib/clock_nanosleep.h, lib/convfiletime.h,
lib/timespec.h, src/biosemi.c, src/device-helper.c,
src/device-helper.h, src/devices.h, src/eegdev-common.h,
src/eegdev-open.c, src/eegdev-procdev.h, src/eegdev-types.c,
src/eegdev-types.h, src/eegdev.c, src/eegdev.h, src/fileout.c,
src/gtec-procdev.c, src/gtec.c, src/neurosky.c,
src/procdev-child.c, src/procdev-common.h, src/procdev-parent.c,
src/usb_comm.c, src/usb_comm.h, tests/fakelibs/fakegtec.h,
tests/fakelibs/gusbamp.c, tests/fakelibs/time-utils.h,
tests/sysbiosemi.c, tests/syseegfile.c, tests/sysgtec.c,
tests/sysneurosky.c, tests/verifycast.c, tests/verifysplit.c: Add
CNBI in the LGPL notice
2011-09-05 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* tests/Makefile.am, tests/sysgtec.c, tests/testfakegtec.c,
tests/testfakegtec.sh: gtec: tests multiple system and simplify the
test code
2011-09-05 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* doc/eegdev-open-options.5, src/gtec.c: gtec: Add real support for
multiple systems (major rework) Now deviceid option support the concatanation of several device ids
with '+' symbols. The first device is configured as master and all
the other as slaves. This combination is exposed to the user of the
library as a unique entity that provides 16+1 channels multiplied by
the number of devices. All channels are obviously synchronized.
2011-06-23 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/procdev-common.h: procdev: hack: use fileno=7 for pipout This avoids gusbamp library to mess with the procdev communication
2011-08-11 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* configure.ac, tests/Makefile.am: gtec: check for libgusbampapi.so
as well
2011-06-24 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/gtec.c: gtec: don't keep the list of gtec devices
2011-09-02 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/device-helper.c, src/device-helper.h, tests/Makefile.am,
tests/verifysplit.c: Adds channel group related funcs in
device-helper
2011-08-30 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/procdev-child.c, src/procdev-common.h, src/procdev-parent.c:
procdev: Use egdi_full{read|write} Replace fullread and fullwrite function supplied by procdev-common.h
by the version supplied by device-helper.c
2011-08-26 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/Makefile.am, src/device-helper.c, src/device-helper.h:
Introduce device-helper and implement fullread/fullwrite
2011-08-25 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* doc/Makefile.am, tests/Makefile.am: Adjust -lxdffileio flags for
the tests
2011-05-23 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/eegdev-types.c, src/eegdev-types.h: Make egd_get_data_size
static inline Source code (especially device implementation) often need data size
without actually perform any type cast. This move allows to use
egd_get_data_size without linking with eegdev_types.c
2011-05-19 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/biosemi.c, src/eegdev-common.h, src/eegdev.c, src/fileout.c,
src/gtec.c, src/neurosky.c, src/procdev-parent.c: Change the way the
ringbuffer mapping is setup Now selected_channels structure (the one initialized by devices)
carry full information concerning the mapping
device->ringbuffer->arrays. This allows to enhance the possibility
for devices to split channels groups if these refers to non
contiguous channels. rename assign_groups =>
setup_ringbuffer_mapping in eegdev.c
2011-05-16 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/biosemi.c, src/eegdev-common.h, src/eegdev.c, src/fileout.c,
src/gtec.c, src/neurosky.c, src/procdev-child.c,
src/procdev-common.h, src/procdev-parent.c: introduce internal
function egd_alloc_input_groups This is useful for devices that need to use more groups for
ringbuffer than the number of groups specified by the user, in
particular when the channels of the same type are splitted in the
input (for example because they come from different hardware
systems).
2011-08-11 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* configure.ac, debian/rules, tests/Makefile.am,
tests/fakelibs/Makefile.am, tests/fakelibs/fakegtec.h,
tests/fakelibs/gusbamp.c, tests/fakelibs/time-utils.h,
tests/testfakegtec.c, tests/testfakegtec.sh, tests/verify-cast.sh:
gtec: Add unit test using a fake gusbampapi library
2011-08-08 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* debian/control, debian/libeegdev0-gtec.install: debian: fix for
i386 build
2011-08-05 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* COPYING, debian/copyright, lib/clock_gettime.c,
lib/clock_gettime.h, lib/clock_nanosleep.c, lib/clock_nanosleep.h,
lib/convfiletime.h, lib/timespec.h, src/biosemi.c, src/devices.h,
src/eegdev-common.h, src/eegdev-open.c, src/eegdev-procdev.h,
src/eegdev-types.c, src/eegdev-types.h, src/eegdev.c, src/eegdev.h,
src/fileout.c, src/gtec-procdev.c, src/gtec.c, src/neurosky.c,
src/procdev-child.c, src/procdev-common.h, src/procdev-parent.c,
src/usb_comm.c, src/usb_comm.h: Relicense the library into LGPL3+
2011-07-22 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* debian/changelog, debian/control, debian/libeegdev0-free.symbols,
debian/libeegdev0-gtec.symbols: debian: provides a metapackage
libeegdev0
2011-07-13 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* configure.ac, src/biosemi.c, src/usb_comm.c, src/usb_comm.h: Use
pkg-config to search for libusb-1.0
2011-07-11 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* Makefile.am, debian/libeegdev0-dev.examples,
debian/libeegdev0-dev.install, debian/rules: debian: install
examples in /usr/share/doc/libeegdev0-dev
2011-07-11 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* configure.ac, doc/Makefile.am, doc/example/Makefile,
doc/example/eegdev_acq.c, doc/examples/Makefile.in,
doc/examples/acquisition.c, doc/examples/acquisition.h,
doc/examples/eegdev_acq.c, doc/examples/recinxdf.c: Adds example of
eegdev combined with xdffileio
2011-07-07 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* debian/changelog, src/procdev-parent.c: procdev bugfix: retfn
thread interrupted on any error (alpha4) This bug made (among other) the system stuck when the open function
failed for any reason (for example no device connected). This commit is release alpha4
2011-07-06 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* debian/changelog: release alpha 3
2011-07-06 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/procdev-child.c, src/procdev-common.h, src/procdev-parent.c:
procdev: properly handle child or parent termination
2011-07-05 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* debian/changelog: alpha2 release
2011-07-05 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/eegdev.c: Fix race condition in egd_start
2011-07-05 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/procdev-parent.c: procdev: fix race condition in child call
return
2011-07-05 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/procdev-parent.c: procdev: fix race condition at
initialization
2011-07-05 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/procdev-parent.c: procdev: fix race condition while setting
samlen
2011-07-05 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/procdev-parent.c: procdev: Make failure at init safe
2011-05-30 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/procdev-child.c, src/procdev-common.h, src/procdev-parent.c:
procdev: Handle closed child or parent
2011-07-05 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* debian/libeegdev0-free.udev, debian/libeegdev0-gtec.udev: debian:
fix udev rules
2011-07-05 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* m4/funcarg.m4: Make funcarg.m4 compatible with new version of
autoconf
2011-06-30 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* Makefile.am, debian/libeegdev0-free.symbols,
debian/libeegdev0-gtec.symbols: debian: Add symbols files
2011-06-30 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* Makefile.am, debian/control, debian/libeegdev0-dev.install,
debian/libeegdev0-free.install, debian/libeegdev0-free.manpages,
debian/libeegdev0-free.udev, debian/libeegdev0-gtec.install,
debian/libeegdev0-gtec.manpages, debian/libeegdev0-gtec.udev,
debian/libeegdev0.install, debian/libeegdev0.manpages,
debian/libeegdev0.udev, debian/rules: debian: drop cdbs,
libeegdev0-gtec is now flavor Make libeegdev0-gtec a flavor build (i.e. contains the whole library
with gtec support built in) instead of an addon. In order to achieve
this, we now use debhelper package system instead of cdbs.
2011-06-27 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* tests/sysgtec.c: gtec bugfix: possible segfault in printcap in
sysgtec.c
2011-06-16 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* debian/changelog: alpha1 release
2011-06-16 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* doc/eegdev-open-options.5, src/gtec.c: gtec: improve the
specification of filters
2011-06-10 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/gtec.c: gtec: bugfix: highpass and lowpass values are inverted
2011-06-06 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/biosemi.c, src/eegdev-types.c, src/eegdev-types.h,
src/eegdev.c, src/fileout.c, src/gtec.c, src/neurosky.c: Use
templates more agressively in eegdev-types.c
2011-06-06 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* Makefile.am, debian/libeegdev0-dev.install,
debian/libeegdev0-dev.manpages, debian/libeegdev0-gtec.install,
debian/libeegdev0.install, debian/libeegdev0.manpages: debian:
libeegdev0 install eegdev-open-options.5
2011-06-06 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* doc/egd_acq_setup.3, doc/egd_channel_info.3, src/eegdev-common.h,
src/eegdev.c: protect egd_acq_setup and egd_channel_info This is the requirement for making device running safe in a child
process.
2011-06-04 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/Makefile.am, src/exports.sym, src/usb_comm.c: Remove useless
exports.sym
2011-05-27 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* Makefile.am, debian/changelog, debian/control,
debian/libeegdev0-gtec.udev, debian/libeegdev0.udev,
debian/postinst.ex, debian/postrm.ex, debian/preinst.ex,
debian/prerm.ex, debian/rules: debian: update the packaging and add
udev rules
2011-05-25 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* auxconfig/50-usb-plugdev.rules: Add rw permission to plugdev group
in udev rule file
2011-05-25 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* Makefile.am, README, auxconfig/50-usb-plugdev.rules: ship
50-usb-plugdev.rules
2011-05-12 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* doc/eegdev-open-options.5, src/gtec.c: gtec: add option slave
2011-05-12 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* doc/Makefile.am, doc/eegdev-open-options.5, doc/egd_open.3: Add
eegdev-open-options man page
2011-05-11 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/gtec.c: gtec: add support for egd_open options This commit makes gtec device interpret the following options:
samplerate, lowpass, highpass, notch, deviceid.
2011-05-11 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/eegdev-open.c: bugfix: options parsing provokes segfault
2011-05-11 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* Makefile.am, configure.ac, debian/changelog, debian/compat,
debian/control, debian/copyright, debian/docs,
debian/libeegdev0-dev.install, debian/libeegdev0-gtec.install,
debian/libeegdev0.install, debian/postinst.ex, debian/postrm.ex,
debian/preinst.ex, debian/prerm.ex, debian/rules: Create Debian
packaging system
2011-05-02 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* configure.ac, doc/Makefile.am, tests/Makefile.am: Make clock_*
required only by datafile and fix tests deps
2011-05-02 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/procdev-child.c: Fix warning in run_eegdev_process
2011-04-28 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/procdev-child.c, src/procdev-parent.c: Make the child
presented with the executable filename
2011-04-28 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/Makefile.am, src/eegdev-procdev.h, src/procdev-child.c,
src/procdev-common.h, src/procdev-parent.c: Make write safer and
share full{write/read} in procdev
2011-04-27 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/biosemi.c, src/devices.h, src/eegdev-common.h,
src/eegdev-open.c, src/eegdev-procdev.h, src/eegdev.c,
src/fileout.c, src/gtec-procdev.c, src/gtec.c, src/neurosky.c,
src/procdev-child.c, src/procdev-parent.c: Change the way options
are propagated
2011-04-27 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/procdev-child.c, src/procdev-parent.c: Make communication with
child process safer Reads from control pipes are ensured to be completed. This commit
also ensures that communication threads are stopped after the device
is closed.
2011-04-27 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* configure.ac, src/Makefile.am, src/gtec-procdev.c: gtec: Run in
separated process when in 64 bits
2011-04-26 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* configure.ac, doc/egd_open.3, m4/ax_define_dir.m4, m4/funcarg.m4,
src/Makefile.am, src/eegdev-common.h, src/eegdev-open.c,
src/eegdev-procdev.h, src/procdev-child.c, src/procdev-parent.c,
tests/Makefile.am: Optional encapsulation of a device into a process Provides the infrastructure to run a device implementation in a
child process. This provides the possibility to use drivers compiled
for 32 bits into a 64 bits environment without changing anything in
the device specific part of the library.
2011-04-26 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/eegdev-common.h, src/eegdev.c, tests/verifycast.c: split
selected_channels structure selected_channels struct is now split into selected_channels meant
to be set by device implementation and input_buffer_group meant to
be set and used only by the core library.
2011-04-25 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/biosemi.c, src/eegdev-common.h, src/eegdev.c, src/fileout.c,
src/gtec.c, src/neurosky.c: Add internal egd_set_input_samlen
2011-04-24 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* configure.ac, src/Makefile.am, src/biosemi.c, src/biosemi.h,
src/devices.h, src/eegdev-open.c, src/fileout.c, src/fileout.h,
src/gtec.c, src/gtec.h, src/neurosky.c, src/neurosky.h,
tests/Makefile.am: Modify the way devices are conditionally built
2011-04-22 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/biosemi.c, src/eegdev-common.h, src/eegdev.c, src/fileout.c,
src/gtec.c, src/neurosky.c: Change how device implementation set
selected_channels Reduce the amount of information that the device implementation have
to provide in selch arrays. In particular, they don't need to find
the cast function neither the data size. Those are inferred by the
core library
2011-04-21 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/neurosky.c: neurosky: Use its own mutex to protect acquisition
status
2011-04-21 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/biosemi.c: biosemi: Use its own lock to protect acquisition
status
2011-04-21 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/fileout.c: eegfile: remove provided_stypes from xdfout_eegdev
2011-04-09 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* configure.ac, src/neurosky.c: neurosky: Open device with the
CLOEXEC flag
2011-04-18 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/eegdev-common.h, src/eegdev.c: Declare field maximum lengths
in eegdev-common.h
2011-04-15 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/gtec.c, tests/sysgtec.c: gtec: Add support for
EGD_PREFILTERING field
2011-04-15 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/biosemi.c, tests/sysbiosemi.c: biosemi: Add support for
EGD_PREFILTERING field
2011-04-15 Nicolas Bourdaud <nicolas.bourdaud@epfl.ch>
* src/fileout.c, tests/syseegfile.c: eegfile: Add support for