nrfx 4.5.0
Loading...
Searching...
No Matches
RTC driver

Real Timer Counter (RTC) peripheral driver. More...

Topics

 RTC peripheral driver configuration
 

Data Structures

struct  nrfx_rtc_t
 RTC driver instance structure. More...
 
struct  nrfx_rtc_config_t
 RTC driver instance configuration structure. More...
 

Macros

#define NRFX_RTC_US_TO_TICKS(us, freq)
 Macro for converting microseconds into ticks.
 
#define NRFX_RTC_INSTANCE(reg)
 Macro for creating an RTC driver instance.
 
#define NRFX_RTC_DEFAULT_CONFIG
 RTC driver default configuration.
 
#define NRFX_RTC_INST_HANDLER_GET(idx)
 Macro returning RTC interrupt handler.
 

Typedefs

typedef void(* nrfx_rtc_handler_t) (nrf_rtc_event_t event_type, void *p_context)
 RTC driver instance handler type.
 

Functions

int nrfx_rtc_init (nrfx_rtc_t *p_instance, nrfx_rtc_config_t const *p_config, nrfx_rtc_handler_t handler)
 Function for initializing the RTC driver instance.
 
void nrfx_rtc_uninit (nrfx_rtc_t *p_instance)
 Function for uninitializing the RTC driver instance.
 
bool nrfx_rtc_init_check (nrfx_rtc_t const *p_instance)
 Function for checking if the RTC driver instance is initialized.
 
void nrfx_rtc_enable (nrfx_rtc_t *p_instance)
 Function for enabling the RTC driver instance.
 
void nrfx_rtc_disable (nrfx_rtc_t *p_instance)
 Function for disabling the RTC driver instance.
 
int nrfx_rtc_cc_set (nrfx_rtc_t const *p_instance, uint32_t channel, uint32_t val, bool enable_irq)
 Function for setting a compare channel.
 
int nrfx_rtc_cc_disable (nrfx_rtc_t const *p_instance, uint32_t channel)
 Function for disabling a channel.
 
void nrfx_rtc_tick_enable (nrfx_rtc_t const *p_instance, bool enable_irq)
 Function for enabling the TICK event.
 
void nrfx_rtc_tick_disable (nrfx_rtc_t const *p_instance)
 Function for disabling the TICK event.
 
void nrfx_rtc_overflow_enable (nrfx_rtc_t const *p_instance, bool enable_irq)
 Function for enabling overflow.
 
void nrfx_rtc_overflow_disable (nrfx_rtc_t const *p_instance)
 Function for disabling overflow.
 
uint32_t nrfx_rtc_max_ticks_get (nrfx_rtc_t const *p_instance)
 Function for getting the maximum relative tick value that can be set in the compare channel.
 
NRFX_STATIC_INLINE void nrfx_rtc_int_disable (nrfx_rtc_t const *p_instance, uint32_t *p_mask)
 Function for disabling all instance interrupts.
 
NRFX_STATIC_INLINE void nrfx_rtc_int_enable (nrfx_rtc_t const *p_instance, uint32_t mask)
 Function for enabling instance interrupts.
 
NRFX_STATIC_INLINE uint32_t nrfx_rtc_counter_get (nrfx_rtc_t const *p_instance)
 Function for retrieving the current counter value.
 
NRFX_STATIC_INLINE void nrfx_rtc_counter_clear (nrfx_rtc_t const *p_instance)
 Function for clearing the counter value.
 
NRFX_STATIC_INLINE uint32_t nrfx_rtc_task_address_get (nrfx_rtc_t const *p_instance, nrf_rtc_task_t task)
 Function for returning a requested task address for the RTC driver instance.
 
NRFX_STATIC_INLINE uint32_t nrfx_rtc_event_address_get (nrfx_rtc_t const *p_instance, nrf_rtc_event_t event)
 Function for returning a requested event address for the RTC driver instance.
 
void nrfx_rtc_irq_handler (nrfx_rtc_t *p_instance)
 Driver interrupt handler.
 

Detailed Description

Real Timer Counter (RTC) peripheral driver.

Macro Definition Documentation

◆ NRFX_RTC_DEFAULT_CONFIG

#define NRFX_RTC_DEFAULT_CONFIG
Value:
{ \
.prescaler = NRF_RTC_FREQ_TO_PRESCALER(32768), \
.interrupt_priority = NRFX_RTC_DEFAULT_CONFIG_IRQ_PRIORITY, \
.tick_latency = NRFX_RTC_US_TO_TICKS(2000, 32768), \
.reliable = false, \
}
#define NRF_RTC_FREQ_TO_PRESCALER(FREQ)
Macro for converting expected frequency to prescaler setting.
Definition nrf_rtc.h:84
#define NRFX_RTC_DEFAULT_CONFIG_IRQ_PRIORITY
Interrupt priority.
Definition nrfx_rtc_dox_config.h:30
#define NRFX_RTC_US_TO_TICKS(us, freq)
Macro for converting microseconds into ticks.
Definition nrfx_rtc.h:52

RTC driver default configuration.

This configuration sets up RTC with the following options:

  • frequency 32.768 kHz
  • maximum latency 2000 us
  • reliability checks disabled

◆ NRFX_RTC_INST_HANDLER_GET

#define NRFX_RTC_INST_HANDLER_GET ( idx)
Value:
NRFX_CONCAT_3(nrfx_rtc_, idx, _irq_handler)
#define NRFX_CONCAT_3(p1, p2, p3)
Macro for concatenating three tokens in macro expansion.
Definition nrfx_utils.h:164

Macro returning RTC interrupt handler.

param[in] idx RTC index.

Returns
Interrupt handler.

◆ NRFX_RTC_INSTANCE

#define NRFX_RTC_INSTANCE ( reg)
Value:
{ \
.p_reg = (NRF_RTC_Type *)reg, \
.cb = {0}, \
}

Macro for creating an RTC driver instance.

◆ NRFX_RTC_US_TO_TICKS

#define NRFX_RTC_US_TO_TICKS ( us,
freq )
Value:
(((us) * (freq)) / 1000000U)

Macro for converting microseconds into ticks.

Typedef Documentation

◆ nrfx_rtc_handler_t

typedef void(* nrfx_rtc_handler_t) (nrf_rtc_event_t event_type, void *p_context)

RTC driver instance handler type.

Parameters
[in]event_typeRTC event type.
[in]p_contextGeneral purpose parameter set during initialization of the RTC. This parameter can be used to pass additional information to the handler function, for example, the RTC ID.

Function Documentation

◆ nrfx_rtc_cc_disable()

int nrfx_rtc_cc_disable ( nrfx_rtc_t const * p_instance,
uint32_t channel )

Function for disabling a channel.

This function disables channel events and channel interrupts.

Parameters
[in]p_instancePointer to the driver instance structure.
[in]channelOne of the channels of the instance.
Return values
0The procedure is successful.
-ETIMEDOUTInterrupt is pending on the requested channel.

◆ nrfx_rtc_cc_set()

int nrfx_rtc_cc_set ( nrfx_rtc_t const * p_instance,
uint32_t channel,
uint32_t val,
bool enable_irq )

Function for setting a compare channel.

The function powers on the instance if the instance was in power off state.

The driver is not entering a critical section when configuring RTC, which means that it can be preempted for a certain amount of time. When the driver was preempted and the value to be set is short in time, there is a risk that the driver sets a compare value that is behind. In this case, if the reliable mode is enabled for the specified instance, the risk is handled. However, to detect if the requested value is behind, this mode makes the following assumptions:

  • The maximum preemption time in ticks (8-bit value) is known and is less than 7.7 ms (for prescaler = 0, RTC frequency 32 kHz).
  • The requested absolute compare value is not bigger than (0x00FFFFFF)-tick_latency. It is the user's responsibility to ensure this.
Warning
Once the compare event is received, corresponding compare channel will be disabled before executing event handler provided by the user.
Parameters
[in]p_instancePointer to the driver instance structure.
[in]channelOne of the channels of the instance.
[in]valAbsolute value to be set in the compare register.
[in]enable_irqTrue to enable the interrupt. False to disable the interrupt.
Return values
0The procedure is successful.
-ETIMEDOUTThe compare is not set because the request value is behind the current counter value. This error can only be reported if the reliable mode is enabled.

◆ nrfx_rtc_counter_clear()

NRFX_STATIC_INLINE void nrfx_rtc_counter_clear ( nrfx_rtc_t const * p_instance)

Function for clearing the counter value.

Parameters
[in]p_instancePointer to the driver instance structure.

◆ nrfx_rtc_counter_get()

NRFX_STATIC_INLINE uint32_t nrfx_rtc_counter_get ( nrfx_rtc_t const * p_instance)

Function for retrieving the current counter value.

Parameters
[in]p_instancePointer to the driver instance structure.
Returns
Counter value.

◆ nrfx_rtc_disable()

void nrfx_rtc_disable ( nrfx_rtc_t * p_instance)

Function for disabling the RTC driver instance.

Parameters
[in]p_instancePointer to the driver instance structure.

◆ nrfx_rtc_enable()

void nrfx_rtc_enable ( nrfx_rtc_t * p_instance)

Function for enabling the RTC driver instance.

Parameters
[in]p_instancePointer to the driver instance structure.

◆ nrfx_rtc_event_address_get()

NRFX_STATIC_INLINE uint32_t nrfx_rtc_event_address_get ( nrfx_rtc_t const * p_instance,
nrf_rtc_event_t event )

Function for returning a requested event address for the RTC driver instance.

The event address can be used by the PPI module.

Parameters
[in]p_instancePointer to the driver instance structure.
[in]eventOne of the peripheral events.
Returns
Address of event register.

◆ nrfx_rtc_init()

int nrfx_rtc_init ( nrfx_rtc_t * p_instance,
nrfx_rtc_config_t const * p_config,
nrfx_rtc_handler_t handler )

Function for initializing the RTC driver instance.

After initialization, the instance is in power off state.

Parameters
[in]p_instancePointer to the driver instance structure.
[in]p_configPointer to the structure with the initial configuration.
[in]handlerEvent handler provided by the user. Must not be NULL.
Return values
0Successfully initialized.
-EALREADYThe driver is already initialized.

◆ nrfx_rtc_init_check()

bool nrfx_rtc_init_check ( nrfx_rtc_t const * p_instance)

Function for checking if the RTC driver instance is initialized.

Parameters
[in]p_instancePointer to the driver instance structure.
Return values
trueInstance is already initialized.
falseInstance is not initialized.

◆ nrfx_rtc_int_disable()

NRFX_STATIC_INLINE void nrfx_rtc_int_disable ( nrfx_rtc_t const * p_instance,
uint32_t * p_mask )

Function for disabling all instance interrupts.

Parameters
[in]p_instancePointer to the driver instance structure.
[in]p_maskPointer to the location where the mask is filled.

◆ nrfx_rtc_int_enable()

NRFX_STATIC_INLINE void nrfx_rtc_int_enable ( nrfx_rtc_t const * p_instance,
uint32_t mask )

Function for enabling instance interrupts.

Parameters
[in]p_instancePointer to the driver instance structure.
[in]maskMask of interrupts to enable.

◆ nrfx_rtc_irq_handler()

void nrfx_rtc_irq_handler ( nrfx_rtc_t * p_instance)

Driver interrupt handler.

Parameters
[in]p_instancePointer to the driver instance structure.

◆ nrfx_rtc_max_ticks_get()

uint32_t nrfx_rtc_max_ticks_get ( nrfx_rtc_t const * p_instance)

Function for getting the maximum relative tick value that can be set in the compare channel.

When a stack (for example SoftDevice) is used and it occupies high priority interrupts, the application code can be interrupted at any moment for a certain period of time. If the reliable mode is enabled, the provided maximum latency is taken into account and the return value is smaller than the RTC counter resolution. If the reliable mode is disabled, the return value equals the counter resolution.

Parameters
[in]p_instancePointer to the driver instance structure.
Returns
Maximum ticks value.

◆ nrfx_rtc_overflow_disable()

void nrfx_rtc_overflow_disable ( nrfx_rtc_t const * p_instance)

Function for disabling overflow.

This function disables the overflow event and interrupt.

Parameters
[in]p_instancePointer to the driver instance structure.

◆ nrfx_rtc_overflow_enable()

void nrfx_rtc_overflow_enable ( nrfx_rtc_t const * p_instance,
bool enable_irq )

Function for enabling overflow.

This function enables the overflow event and optionally the interrupt.

Parameters
[in]p_instancePointer to the driver instance structure.
[in]enable_irqTrue to enable the interrupt. False to disable the interrupt.

◆ nrfx_rtc_task_address_get()

NRFX_STATIC_INLINE uint32_t nrfx_rtc_task_address_get ( nrfx_rtc_t const * p_instance,
nrf_rtc_task_t task )

Function for returning a requested task address for the RTC driver instance.

The task address can be used by the PPI module.

Parameters
[in]p_instancePointer to the instance.
[in]taskOne of the peripheral tasks.
Returns
Address of task register.

◆ nrfx_rtc_tick_disable()

void nrfx_rtc_tick_disable ( nrfx_rtc_t const * p_instance)

Function for disabling the TICK event.

This function disables the TICK event and interrupt.

Parameters
[in]p_instancePointer to the driver instance structure.

◆ nrfx_rtc_tick_enable()

void nrfx_rtc_tick_enable ( nrfx_rtc_t const * p_instance,
bool enable_irq )

Function for enabling the TICK event.

This function enables the tick event and optionally the interrupt.

Parameters
[in]p_instancePointer to the driver instance structure.
[in]enable_irqTrue to enable the interrupt. False to disable the interrupt.

◆ nrfx_rtc_uninit()

void nrfx_rtc_uninit ( nrfx_rtc_t * p_instance)

Function for uninitializing the RTC driver instance.

After uninitialization, the instance is in idle state. The hardware should return to the state before initialization.

Parameters
[in]p_instancePointer to the driver instance structure.