Hi community,
We are listening to multiple UDP ports, using non-blocking UDP sockets. We currently poll the different sockets (with sl_RecvFrom) one after another.
We would like to improve our response time by going "blocking". We assume that a task has to be created for each UDP port, create blocking socket and call the "sl_RecvFrom" function from the corresponding task.
1. Is that the way ?
2. Then, could that be a problem if multiple tasks call sl_RecvFrom ?
Thanks in advance !