Difference between revisions of "Nrf52-timer-config"
From Wiki at Neela Nurseries
(Starting a notes page on nRF5x timer/counter configuration and use.) |
(No difference)
|
Revision as of 14:22, 25 April 2021
2021-04-25
Looking at some example code in nRF5SDK153059ac345/nRF5_SDK_15.3.0_59ac345/components/app_simple_timer.c
, there are routines to init, start, stop (pause) and to uninitialize. Given a task to assure that a Nordic chip goes into lower or lowest possible power mode, we'll first examine the 'stop' and 'uninit' routines in this Nordic demo code.
The routine uint32_t app_simple_timer_stop(void)
is a wrapper to nrf_drv_timer_pause()
. . .