where are the wifi shield parameters like "3000" documented?
In the file OpenBCI_Python/open_bci_wifi.py, line 414, a comment states "# 3000 is the max data the WiFi shield is allowed to send over TCP."
It looks as if most such definitions are in OpenBCI_WIFI/src/OpenBCI_Wifi_Definitions.h, but the above 3000 byte limitation is not mentioned there. This is for writing a TCP driver type routine for the WiFi shield.
Is there another file on github where other constants of this kind are documented?
Comments
The largest amount of data the wifi shield can send is 1440 and that's from the ESP8266 upper limit. That's 42 raw packets per TCP send. The TCP on the wifi shield acts as a client for high speed streaming. The asyncore uses TCP as far as i knoe, it's a raw socket, not a web socket.
The firmware is a great place or the learning pages under software! http://docs.openbci.com/OpenBCI Software/03-OpenBCI_Wifi_Server
Good luck!
Any ideas on where I should document the hard contstants for future users?