I am using Node and Socket.io to stream a processed stream of data from various external sensors (accelerometers, gyros etc) connected to an IGEP board (similar to Beagleboard) to a number of clients - smartphones, computers etc. In the end, the unit is supposed to be battery-powered and wireless. The data rate is pretty low, roughly 100 characters transmitted 30 times per second.

All is working fine when clients are connected to the IGEP using wired ethernet and a switch, but when using WiFi something breaks. As soon as more than one client is connected, timeouts and lost connections start to occur, making it practically unusable. Ping times seem to be ever rising for the packets that do make it through. I have tried ad hoc WiFi as well as using an access point. I seem unable to make WiFi support persistent connections to more than one client.

Should I be able to do this or is there some limitation in the WiFi spec? If not - where do I focus the troubleshooting? Driver issues? WiFi chipset (try USB dongle instead)? Node/socket.io? OS issue? Elsewhere?

Thanks, Erik

UPDATE -- Additional troubleshooting revealed that the WiFi drivers where the cause of the issues.

link|improve this question
Have you tried scaling back to transmitting 1x per second? Can you grab a network trace? If your wifi is a NAT table, try turning it off too. – Chocohound Apr 8 '11 at 5:20
It turned out to be a driver issue. Thanks for the help anyway, Nils! – Erik Thoresson Apr 8 '11 at 11:21
You should answer your own question so that it has an answer. Maybe update the question title as well. Then other people searching might find it useful. – Zan Lynx Apr 8 '11 at 13:54
feedback

1 Answer

up vote 1 down vote accepted

It turned out to be a WiFi driver issue. I downgraded to an earlier version and now it is all working smooth also over wireless.

link|improve this answer
1  
You might want to accept this answer. – Waldheinz Jun 1 '11 at 13:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.