Hello,
I am developing Ant device with NRF52840.
Recently, I have seen sd_ant_coex_config_set function.
I used this function and the function works good.
However, I don't know exactly how to work.
I read sd_ant_coex_config_set of document like below.
* Byte0 = Configuration enable bitfield
* bit0 - enable/disable tx/rx channel keep alive config (Byte4/5 & Byte6/7)
* bit1 - enable/disable tx/rx channel fixed interval priority config (Byte1)
* bit2 - enable/disable transfer keep alive config (Byte2)
* bit3 - enable/disable search channel fixed interval priority config (Byte3)
* else - reserved
* Byte1 = tx/rx channel fixed interval priority configuration
* Byte2 = transfer keep alive configuration
* Byte3 = search channel fixed interval priority configuration
* Byte4(LSB)/Byte5(MSB) = tx channel keep alive configuration
* Byte6(LSB)/Byte7(MSB) = rx channel keep alive configuration
* Byte8 = ANT counts/16 spent in high priority mode during search scan.
* Byte9 = ANT counts/16 spent in low priority mode during search scan.
*
* Advanced configuration structure is as follows:
* Byte0 = Configuration enable bitfield
* bit0 - enable/disable priority override config (Byte1)
* bit1-7 - reserved
* Byte1 = ANT priority override. 0 = low, 1 = normal(default), 2 = high, 3 = critical
* Byte2 = Reserved
* Byte3 = Reserved
* Byte4 = Reserved
* Byte5 = Reserved
* Byte6 = Reserved
* Byte7 = Reserved
I want to know the meaning of each bitfield.