how to disable sdh in ANT demo?

I'm using Ant sdh,I want to make system enter sleep,how to disable nrf_sdh_ant?

I usd this function to enable sdh,but can't disable sdh to enter sleep,how to use?

static void softdevice_setup(void)
{
ret_code_t err_code = nrf_sdh_enable_request();
APP_ERROR_CHECK(err_code);

ASSERT(nrf_sdh_is_enabled());

err_code = nrf_sdh_ant_enable();
APP_ERROR_CHECK(err_code);
}

Related