rbghongade Active Member Licensed User Longtime User Oct 3, 2017 #1 Dear friends, How to implement buffering to send high sampling rate data across WiFi link?
Erel B4X founder Staff member Licensed User Longtime User Oct 4, 2017 #2 Are you using ESP8266? The data is buffered automatically. It is sent when you call Flush or on the next message loop cycle. Upvote 0
Are you using ESP8266? The data is buffered automatically. It is sent when you call Flush or on the next message loop cycle.
rbghongade Active Member Licensed User Longtime User Oct 4, 2017 #3 Dear Erel, Indeed I am using ESP8266. I want to sample an analog signal say ECG and send it across Wifi. The values take a long to reach the destination, hence I want to send a chunk of data at a time but unable to figure out how to do it! Upvote 0
Dear Erel, Indeed I am using ESP8266. I want to sample an analog signal say ECG and send it across Wifi. The values take a long to reach the destination, hence I want to send a chunk of data at a time but unable to figure out how to do it!
Erel B4X founder Staff member Licensed User Longtime User Oct 4, 2017 #4 Are you using AsyncStreams? If so then the data is already buffered. Upvote 0