I am looking for recommendations on whether to use the 'nrfx_wdt_*' component module or the 'nrf_drv_wdt_*' component module when adding a hardware watchdog to my product board based on the PA10056 reference board.
Cheers
RVM
I am looking for recommendations on whether to use the 'nrfx_wdt_*' component module or the 'nrf_drv_wdt_*' component module when adding a hardware watchdog to my product board based on the PA10056 reference board.
Cheers
RVM
nrf_drv_wdt wont be compatible with our future nRF Connect SDKs, but we use nrfx_xxx driver even in our newer SDKs, so based on that I recommend you to use nrfx_wdt. The disadvantage is that nrfx_wdt is one level lower in the HAL so you might have to understand most of WDT hardware to use it.
nrf_drv_wdt wont be compatible with our future nRF Connect SDKs, but we use nrfx_xxx driver even in our newer SDKs, so based on that I recommend you to use nrfx_wdt. The disadvantage is that nrfx_wdt is one level lower in the HAL so you might have to understand most of WDT hardware to use it.
OK. Thanks.