Hi everyone,
On my actual configuration I can connect one smartwatch to the nRF51422, and re-connect it later if the communication have been interrupt.
However when I'm trying to connect a second watch to the nRF51422, I can't have a successful connection.
There is how I'm closing an establish connection
err_code = sd_ant_channel_close(ANT_HRMRX_ANT_CHANNEL);
APP_ERROR_CHECK(err_code);
and re-opening it again later on with:
err_code = sd_ant_channel_open(ANT_HRMRX_ANT_CHANNEL);
APP_ERROR_CHECK(err_code);
Am I missing something?