I use:
--nrf52840
--nRF5_SDK_17.1.0
--ESB.
Normally, 1:1 communication in one direction is performed from the module with nrf_esb_mode_t = 'NRF_ESB_MODE_PTX' to the module with NRF_ESB_MODE_PRX. In this case, the ACK reply is also disabled.
Only during maintenance, we want to transfer data from the module of 'NRF_ESB_MODE_PRX' to the module of 'NRF_ESB_MODE_PTX' without changing this mode.
Specifically, from the module of RF_ESB_MODE_PRX we perform the following.
nrf_esb_write_payload(&tx_payload);
nrf_esb_start_tx();
I then want to receive the contents of &tx_payload in the module of NRF_ESB_MODE_PTX.
I have tried, but from RF_ESB_MODE_PRX, probably no radio waves are being transmitted.
Is it still not possible to communicate in the opposite direction without exchanging the respective modes?
