I send and receive 1:1 using an ESB with nrf52840.
I do not want to "use nrf_esb_start_tx()", but instead use PPI to trigger a specific event to be sent.
I want the PPI event to be a timer event (NRF_TIMER_EVENT_COMPARE0) or a pwm event (NRF_PWM_EVENT_PWMPERIODEND).
However, the ESD does not have a function to get the address of the transmitting task, equivalent to "xxx_task_addr_get()". Other peripherals have a function to get the address of a task, but the ESB does not.
This address is used in the "nrf_drv_ppi_channel_assign()" configuration of the PPI to get the address of the task to be sent.
We assume that the address is necessary to relate the event to the task.
--How should the PPI be configured?
--How can I get the address of the task to be sent in the ESB?
--What is the example of a concrete programme to send an ESB with (NRF_TIMER_EVENT_COMPARE0) or (NRF_PWM_EVENT_PWMPERIODEND) as an event in the PPI?