Home
last modified time | relevance | path

Searched refs:cc_channel (Results 1 – 6 of 6) sorted by relevance

/hal_nordic-latest/nrfx/haly/
Dnrfy_grtc.h151 for (uint8_t cc_channel = 0; cc_channel < NRF_GRTC_SYSCOUNTER_CC_COUNT; cc_channel++) in nrfy_grtc_int_init() local
153 nrf_grtc_event_t event = nrf_grtc_sys_counter_compare_event_get(cc_channel); in nrfy_grtc_int_init()
222 for (uint8_t cc_channel = 0; cc_channel < NRF_GRTC_SYSCOUNTER_CC_COUNT; cc_channel++) in nrfy_grtc_prepare() local
224 nrf_grtc_publish_clear(p_reg, nrf_grtc_sys_counter_compare_event_get(cc_channel)); in nrfy_grtc_prepare()
225 nrf_grtc_subscribe_clear(p_reg, nrf_grtc_sys_counter_capture_task_get(cc_channel)); in nrfy_grtc_prepare()
399 uint8_t cc_channel) in nrfy_grtc_sys_counter_compare_event_check() argument
402 bool check = nrf_grtc_event_check(p_reg, nrf_grtc_sys_counter_compare_event_get(cc_channel)); in nrfy_grtc_sys_counter_compare_event_check()
414 uint8_t cc_channel) in nrfy_grtc_sys_counter_compare_event_clear() argument
416 nrf_grtc_event_clear(p_reg, nrf_grtc_sys_counter_compare_event_get(cc_channel)); in nrfy_grtc_sys_counter_compare_event_clear()
429 uint8_t cc_channel, in nrfy_grtc_sys_counter_capture_subscribe_set() argument
[all …]
Dnrfy_timer.h349 nrf_timer_cc_channel_t cc_channel, in nrfy_timer_cc_set() argument
352 nrf_timer_cc_set(p_reg, cc_channel, cc_value); in nrfy_timer_cc_set()
358 nrf_timer_cc_channel_t cc_channel) in nrfy_timer_cc_get() argument
361 uint32_t cc = nrf_timer_cc_get(p_reg, cc_channel); in nrfy_timer_cc_get()
387 nrf_timer_cc_channel_t cc_channel) in nrfy_timer_one_shot_enable() argument
389 nrf_timer_one_shot_enable(p_reg, cc_channel); in nrfy_timer_one_shot_enable()
395 nrf_timer_cc_channel_t cc_channel) in nrfy_timer_one_shot_disable() argument
397 nrf_timer_one_shot_disable(p_reg, cc_channel); in nrfy_timer_one_shot_disable()
/hal_nordic-latest/nrfx/hal/
Dnrf_grtc.h430 uint8_t cc_channel,
442 uint8_t cc_channel);
464 uint8_t cc_channel,
859 NRF_STATIC_INLINE nrf_grtc_task_t nrf_grtc_sys_counter_capture_task_get(uint8_t cc_channel);
868 uint8_t cc_channel);
877 uint8_t cc_channel);
887 NRF_STATIC_INLINE nrf_grtc_event_t nrf_grtc_sys_counter_compare_event_get(uint8_t cc_channel);
899 uint8_t cc_channel);
1122 uint8_t cc_channel, in nrf_grtc_sys_counter_cc_set() argument
1126 NRFX_ASSERT(cc_channel < NRF_GRTC_SYSCOUNTER_CC_COUNT); in nrf_grtc_sys_counter_cc_set()
[all …]
Dnrf_timer.h714 nrf_timer_cc_channel_t cc_channel,
726 nrf_timer_cc_channel_t cc_channel);
787 nrf_timer_cc_channel_t cc_channel);
796 nrf_timer_cc_channel_t cc_channel);
945 nrf_timer_cc_channel_t cc_channel, in nrf_timer_cc_set() argument
948 p_reg->CC[cc_channel] = cc_value; in nrf_timer_cc_set()
952 nrf_timer_cc_channel_t cc_channel) in nrf_timer_cc_get() argument
954 return (uint32_t)p_reg->CC[cc_channel]; in nrf_timer_cc_get()
997 nrf_timer_cc_channel_t cc_channel) in nrf_timer_one_shot_enable() argument
999 p_reg->ONESHOTEN[cc_channel] = TIMER_ONESHOTEN_ONESHOTEN_Msk; in nrf_timer_one_shot_enable()
[all …]
/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_timer.c269 uint32_t nrfx_timer_capture(nrfx_timer_t const * p_instance, nrf_timer_cc_channel_t cc_channel) in nrfx_timer_capture() argument
272 NRFX_ASSERT(cc_channel < p_instance->cc_channel_count); in nrfx_timer_capture()
274 return nrfy_timer_capture_get(p_instance->p_reg, cc_channel); in nrfx_timer_capture()
294 nrf_timer_cc_channel_t cc_channel, in nrfx_timer_compare() argument
300 nrf_timer_int_mask_t timer_int = nrfy_timer_compare_int_get(cc_channel); in nrfx_timer_compare()
304 nrfy_timer_event_clear(p_instance->p_reg, nrfy_timer_compare_event_get(cc_channel)); in nrfx_timer_compare()
312 nrfy_timer_cc_set(p_instance->p_reg, cc_channel, cc_value); in nrfx_timer_compare()
316 cc_channel); in nrfx_timer_compare()
320 nrf_timer_cc_channel_t cc_channel, in nrfx_timer_extended_compare() argument
328 (uint32_t)(NRF_TIMER_SHORT_COMPARE0_STOP_MASK << cc_channel) | in nrfx_timer_extended_compare()
[all …]
/hal_nordic-latest/nrfx/drivers/include/
Dnrfx_timer.h290 uint32_t nrfx_timer_capture(nrfx_timer_t const * p_instance, nrf_timer_cc_channel_t cc_channel);
303 nrf_timer_cc_channel_t cc_channel);
314 nrf_timer_cc_channel_t cc_channel,
329 nrf_timer_cc_channel_t cc_channel,
400 nrf_timer_cc_channel_t cc_channel) in nrfx_timer_capture_get() argument
402 return nrfy_timer_cc_get(p_instance->p_reg, cc_channel); in nrfx_timer_capture_get()