I'm currently trying to use esp-now for communication between two esp32. According to the esp-now documentation, the receiver calls the callback function as soon as it receives data, but does this mean that the callback can be called during the esp32 main loop? Or does esp-now check whether data has been sent at the end of the loop?
That's kind of the point of the callback function paradigm. You don't know when it will happen, nor do you need to.
At any time when data are ready.
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.