Hi all
Found solution :-)
Check /dev/ttyUSB0
sudo stty -F /dev/ttyUSB0 -a
speed 57600 baud; rows 0; columns 0; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>;
eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R;
werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0;
-parenb -parodd cs8 hupcl -cstopb cread clocal -crtscts
-ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl ixon -ixoff
-iuclc -ixany -imaxbel -iutf8
-opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
-isig -icanon iexten -echo -echoe echok -echonl -noflsh -xcase -tostop -echoprt
echoctl echoke
Problem
icrnl, ixon, echoctl, echoke are on, must be off
Solution
switch off Options icrnl, ixon, echoctl, echoke
Command
sudo stty -F /dev/ttyUSB0 -icrnl -ixon -echoctl -echoke
Result
neuroserver and modeegdriver are working. Tried it with Brainbay
Comment
In my application the interface to eeg-smt is connected to Raspberry pi (battery powered). The modeegdriver runs on raspberry pi with a wlan adapter. The neuroserver can be started from Brainbay in Windows or on raspberry pi.
regards Thomas