In the Bluetooth.on callback, would it be safe to assume that the data received event will be called in order of being received?
If I have a callback that takes longer, will the firmware wait to call the callback for the next chunk of data, or is there a chance that multiple instances of the same callback could be running at the same time?
If I sent 572 bytes of data in 28 characteristic updates, would it cache all 28 updates, or would you risk having some lost?
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
In the Bluetooth.on callback, would it be safe to assume that the data received event will be called in order of being received?
If I have a callback that takes longer, will the firmware wait to call the callback for the next chunk of data, or is there a chance that multiple instances of the same callback could be running at the same time?
If I sent 572 bytes of data in 28 characteristic updates, would it cache all 28 updates, or would you risk having some lost?
Sorry for all the questions.