Hi
So the central multilink example uses init_scan.connect_if_match = true; Mine is false, because I want to manage the connection myself.
What is a good way to manage the connections one at a time?
I have to wait for the callback to ensure things are connected.
I'm using a boolean to indicate if the thing is connected or not.
I was about to add another boolean to indicate 'connecting', and then I decided to post.
Normally I would use 2 semaphores to signal a task,
However, I'm using the scheduler now and can only think of posting the same job that manages everything until all of my booleans are set.
Is there a better way ?