Hello I am using the NRF52832 in ESB mode. I use both VERIFY_SUCCESS() and APP_ERROR_CHECK() within my code in various places but when am I supposed to use versus the other. For example, I use:
err_code = esb_init();
VERIFY_SUCCESS(err_code);
then, somewhere else I use...
err_code = nrf_esb_disable();
APP_ERROR_CHECK(err_code);