| /hal_nordic-latest/nrfx/drivers/src/ |
| D | nrfx_grtc.c | 90 #define MAIN_GRTC_CC_CHANNEL (m_cb.channel_data[0].channel) 151 static bool is_channel_used(uint8_t channel) in is_channel_used() argument 153 return (GRTC_CHANNEL_TO_BITMASK(channel) & used_channels_mask_get()); in is_channel_used() 156 static bool is_channel_allocated(uint8_t channel) in is_channel_allocated() argument 158 return (GRTC_CHANNEL_TO_BITMASK(channel) & allocated_channels_mask_get()); in is_channel_allocated() 161 static void channel_used_mark(uint8_t channel) in channel_used_mark() argument 163 m_cb.used_channels |= GRTC_CHANNEL_TO_BITMASK(channel); in channel_used_mark() 166 static void channel_used_unmark(uint8_t channel) in channel_used_unmark() argument 168 m_cb.used_channels &= ~GRTC_CHANNEL_TO_BITMASK(channel); in channel_used_unmark() 171 static bool is_channel_available(uint8_t channel) in is_channel_available() argument [all …]
|
| D | nrfx_ppi.c | 72 static bool is_programmable_app_channel(nrf_ppi_channel_t channel) in is_programmable_app_channel() argument 74 return ((NRFX_PPI_PROG_APP_CHANNELS_MASK & nrfx_ppi_channel_to_mask(channel)) != 0); in is_programmable_app_channel() 100 static bool is_app_channel(nrf_ppi_channel_t channel) in is_app_channel() argument 102 return are_app_channels(nrfx_ppi_channel_to_mask(channel)); in is_app_channel() 148 nrfx_err_t nrfx_ppi_channel_free(nrf_ppi_channel_t channel) in nrfx_ppi_channel_free() argument 150 if (!is_programmable_app_channel(channel)) in nrfx_ppi_channel_free() 155 nrf_ppi_channel_disable(NRF_PPI, channel); in nrfx_ppi_channel_free() 157 return nrfx_flag32_free(&m_channels_allocated, channel); in nrfx_ppi_channel_free() 161 nrfx_err_t nrfx_ppi_channel_assign(nrf_ppi_channel_t channel, uint32_t eep, uint32_t tep) in nrfx_ppi_channel_assign() argument 170 if (!is_programmable_app_channel(channel)) in nrfx_ppi_channel_assign() [all …]
|
| D | nrfx_dppi.c | 361 static nrfx_err_t dppi_channel_free(nrfx_dppi_t const * p_instance, uint8_t channel) in dppi_channel_free() argument 365 nrfy_dppi_channels_disable(p_instance->p_reg, NRFX_BIT(channel)); in dppi_channel_free() 366 return nrfx_flag32_free(&p_cb->allocated_channels, channel); in dppi_channel_free() 369 static nrfx_err_t dppi_channel_enable(nrfx_dppi_t const * p_instance, uint8_t channel) in dppi_channel_enable() argument 375 if (!nrfx_flag32_is_allocated(p_cb->allocated_channels, channel)) in dppi_channel_enable() 381 nrfy_dppi_channels_enable(p_instance->p_reg, NRFX_BIT(channel)); in dppi_channel_enable() 387 static nrfx_err_t dppi_channel_disable(nrfx_dppi_t const * p_instance, uint8_t channel) in dppi_channel_disable() argument 393 if (!nrfx_flag32_is_allocated(p_cb->allocated_channels, channel)) in dppi_channel_disable() 399 nrfy_dppi_channels_disable(p_instance->p_reg, NRFX_BIT(channel)); in dppi_channel_disable() 423 uint8_t channel, in dppi_channel_include_in_group() argument [all …]
|
| D | nrfx_rtc.c | 146 nrfx_err_t nrfx_rtc_cc_disable(nrfx_rtc_t const * p_instance, uint32_t channel) in nrfx_rtc_cc_disable() argument 149 NRFX_ASSERT(channel < p_instance->cc_channel_count); in nrfx_rtc_cc_disable() 152 uint32_t int_mask = NRF_RTC_CHANNEL_INT_MASK(channel); in nrfx_rtc_cc_disable() 153 nrf_rtc_event_t event = NRF_RTC_CHANNEL_EVENT_ADDR(channel); in nrfx_rtc_cc_disable() 171 (unsigned long)channel); in nrfx_rtc_cc_disable() 178 uint32_t channel, in nrfx_rtc_cc_set() argument 183 NRFX_ASSERT(channel < p_instance->cc_channel_count); in nrfx_rtc_cc_set() 186 uint32_t int_mask = NRF_RTC_CHANNEL_INT_MASK(channel); in nrfx_rtc_cc_set() 187 nrf_rtc_event_t event = NRF_RTC_CHANNEL_EVENT_ADDR(channel); in nrfx_rtc_cc_set() 194 nrfy_rtc_cc_set(p_instance->p_reg, channel, val); in nrfx_rtc_cc_set() [all …]
|
| D | nrfx_ppib.c | 194 nrfx_err_t nrfx_ppib_channel_free(nrfx_ppib_interconnect_t const * p_instance, uint8_t channel) in nrfx_ppib_channel_free() argument 198 if ((p_cb->available_channels & NRFX_BIT(channel)) == 0) in nrfx_ppib_channel_free() 203 nrf_ppib_subscribe_clear(p_instance->left.p_reg, nrf_ppib_send_task_get(channel)); in nrfx_ppib_channel_free() 204 nrf_ppib_subscribe_clear(p_instance->right.p_reg, nrf_ppib_send_task_get(channel)); in nrfx_ppib_channel_free() 205 nrf_ppib_publish_clear(p_instance->left.p_reg, nrf_ppib_receive_event_get(channel)); in nrfx_ppib_channel_free() 206 nrf_ppib_publish_clear(p_instance->right.p_reg, nrf_ppib_receive_event_get(channel)); in nrfx_ppib_channel_free() 208 return nrfx_flag32_free(&p_cb->allocated_channels, channel); in nrfx_ppib_channel_free()
|
| D | nrfx_saadc.c | 161 uint8_t channel = (uint8_t)NRF_CTZ(channel_mask); in saadc_channels_deconfig() local 163 channel_mask &= ~(1UL << channel); in saadc_channels_deconfig() 164 m_cb.channels_configured &= (uint8_t)~(1UL << channel); in saadc_channels_deconfig() 166 m_cb.channels_input[channel].input_p = NRF_SAADC_INPUT_DISABLED; in saadc_channels_deconfig() 167 m_cb.channels_input[channel].input_n = NRF_SAADC_INPUT_DISABLED; in saadc_channels_deconfig() 175 uint8_t channel = (uint8_t)NRF_CTZ(channel_mask); in saadc_channels_disable() local 176 channel_mask &= ~(1UL << channel); in saadc_channels_disable() 177 nrfy_saadc_channel_input_set(NRF_SAADC, channel, in saadc_channels_disable() 646 nrfx_err_t nrfx_saadc_limits_set(uint8_t channel, int16_t limit_low, int16_t limit_high) in nrfx_saadc_limits_set() argument 662 if (!(m_cb.channels_activated & (1 << channel))) in nrfx_saadc_limits_set() [all …]
|
| /hal_nordic-latest/nrfx/helpers/ |
| D | nrfx_gppi_dppi.c | 45 bool nrfx_gppi_channel_check(uint8_t channel) in nrfx_gppi_channel_check() argument 47 return nrfy_dppi_channel_check(NRF_DPPIC, channel); in nrfx_gppi_channel_check() 70 void nrfx_gppi_event_endpoint_setup(uint8_t channel, uint32_t eep) in nrfx_gppi_event_endpoint_setup() argument 73 NRF_DPPI_ENDPOINT_SETUP(eep, channel); in nrfx_gppi_event_endpoint_setup() 76 void nrfx_gppi_task_endpoint_setup(uint8_t channel, uint32_t tep) in nrfx_gppi_task_endpoint_setup() argument 79 NRF_DPPI_ENDPOINT_SETUP(tep, channel); in nrfx_gppi_task_endpoint_setup() 82 void nrfx_gppi_channel_endpoints_setup(uint8_t channel, uint32_t eep, uint32_t tep) in nrfx_gppi_channel_endpoints_setup() argument 84 nrfx_gppi_event_endpoint_setup(channel, eep); in nrfx_gppi_channel_endpoints_setup() 85 nrfx_gppi_task_endpoint_setup(channel, tep); in nrfx_gppi_channel_endpoints_setup() 88 void nrfx_gppi_channel_endpoints_clear(uint8_t channel, uint32_t eep, uint32_t tep) in nrfx_gppi_channel_endpoints_clear() argument [all …]
|
| D | nrfx_gppi_ppi.c | 42 bool nrfx_gppi_channel_check(uint8_t channel) in nrfx_gppi_channel_check() argument 44 return (nrf_ppi_channel_enable_get(NRF_PPI, (nrf_ppi_channel_t)channel) == in nrfx_gppi_channel_check() 63 void nrfx_gppi_event_endpoint_setup(uint8_t channel, uint32_t eep) in nrfx_gppi_event_endpoint_setup() argument 65 nrf_ppi_event_endpoint_setup(NRF_PPI, (nrf_ppi_channel_t)channel, eep); in nrfx_gppi_event_endpoint_setup() 68 void nrfx_gppi_task_endpoint_setup(uint8_t channel, uint32_t tep) in nrfx_gppi_task_endpoint_setup() argument 70 nrf_ppi_task_endpoint_setup(NRF_PPI, (nrf_ppi_channel_t)channel, tep); in nrfx_gppi_task_endpoint_setup() 73 void nrfx_gppi_channel_endpoints_setup(uint8_t channel, uint32_t eep, uint32_t tep) in nrfx_gppi_channel_endpoints_setup() argument 75 nrf_ppi_channel_endpoint_setup(NRF_PPI, (nrf_ppi_channel_t)channel, eep, tep); in nrfx_gppi_channel_endpoints_setup() 78 void nrfx_gppi_channel_endpoints_clear(uint8_t channel, uint32_t eep, uint32_t tep) in nrfx_gppi_channel_endpoints_clear() argument 80 nrfx_gppi_event_endpoint_clear(channel, eep); in nrfx_gppi_channel_endpoints_clear() [all …]
|
| D | nrfx_gppi_dppi_ppib_lumos.c | 89 static nrfx_err_t dppic_channel_free(nrfx_interconnect_dppic_t * p_dppic, uint8_t channel) in dppic_channel_free() argument 92 return nrfx_dppi_channel_free(&p_dppic->dppic, channel); in dppic_channel_free() 94 return nrfx_flag32_free(&p_dppic->channels_mask, channel); in dppic_channel_free() 121 static nrfx_err_t ppib_channel_free(nrfx_interconnect_ppib_t * p_ppib, uint8_t channel) in ppib_channel_free() argument 123 return nrfx_ppib_channel_free(&p_ppib->ppib, channel); in ppib_channel_free() 550 void nrfx_gppi_event_endpoint_setup(uint8_t channel, uint32_t eep) in nrfx_gppi_event_endpoint_setup() argument 552 (void)channel; in nrfx_gppi_event_endpoint_setup() 558 void nrfx_gppi_task_endpoint_setup(uint8_t channel, uint32_t tep) in nrfx_gppi_task_endpoint_setup() argument 560 (void)channel; in nrfx_gppi_task_endpoint_setup() 566 void nrfx_gppi_event_endpoint_clear(uint8_t channel, uint32_t eep) in nrfx_gppi_event_endpoint_clear() argument [all …]
|
| D | nrfx_gppi_dppi_ppib.c | 71 static nrfx_err_t channel_free(nrfx_atomic_t * p_allocated_channels, uint8_t channel) in channel_free() argument 74 if (channel == CHANNEL_INVALID) in channel_free() 78 return nrfx_flag32_free(p_allocated_channels, channel); in channel_free() 496 void nrfx_gppi_event_endpoint_setup(uint8_t channel, uint32_t eep) in nrfx_gppi_event_endpoint_setup() argument 498 (void)channel; in nrfx_gppi_event_endpoint_setup() 504 void nrfx_gppi_task_endpoint_setup(uint8_t channel, uint32_t tep) in nrfx_gppi_task_endpoint_setup() argument 506 (void)channel; in nrfx_gppi_task_endpoint_setup() 512 void nrfx_gppi_event_endpoint_clear(uint8_t channel, uint32_t eep) in nrfx_gppi_event_endpoint_clear() argument 514 (void)channel; in nrfx_gppi_event_endpoint_clear() 520 void nrfx_gppi_task_endpoint_clear(uint8_t channel, uint32_t tep) in nrfx_gppi_task_endpoint_clear() argument [all …]
|
| D | nrfx_gppi.h | 202 bool nrfx_gppi_channel_check(uint8_t channel); 236 void nrfx_gppi_event_endpoint_setup(uint8_t channel, uint32_t eep); 247 void nrfx_gppi_task_endpoint_setup(uint8_t channel, uint32_t tep); 256 void nrfx_gppi_channel_endpoints_setup(uint8_t channel, uint32_t eep, uint32_t tep); 265 void nrfx_gppi_channel_endpoints_clear(uint8_t channel, uint32_t eep, uint32_t tep); 274 void nrfx_gppi_event_endpoint_clear(uint8_t channel, uint32_t eep); 283 void nrfx_gppi_task_endpoint_clear(uint8_t channel, uint32_t tep); 293 void nrfx_gppi_fork_endpoint_setup(uint8_t channel, uint32_t fork_tep); 302 void nrfx_gppi_fork_endpoint_clear(uint8_t channel, uint32_t fork_tep); 408 nrfx_err_t nrfx_gppi_channel_free(uint8_t channel); [all …]
|
| /hal_nordic-latest/nrfx/drivers/include/ |
| D | nrfx_grtc.h | 83 uint8_t channel; /**< Capture/compare channel number. */ member 187 nrfx_err_t nrfx_grtc_channel_free(uint8_t channel); 199 bool nrfx_grtc_is_channel_used(uint8_t channel); 342 nrfx_err_t nrfx_grtc_syscounter_cc_disable(uint8_t channel); 393 nrfx_err_t nrfx_grtc_syscounter_cc_int_disable(uint8_t channel); 407 nrfx_err_t nrfx_grtc_syscounter_cc_int_enable(uint8_t channel); 418 bool nrfx_grtc_syscounter_cc_int_enable_check(uint8_t channel); 432 nrfx_err_t nrfx_grtc_syscounter_capture(uint8_t channel); 446 nrfx_err_t nrfx_grtc_syscounter_cc_value_read(uint8_t channel, uint64_t * p_val); 511 NRFX_STATIC_INLINE uint32_t nrfx_grtc_capture_task_address_get(uint8_t channel); [all …]
|
| D | nrfx_ppib.h | 152 nrfx_err_t nrfx_ppib_channel_free(nrfx_ppib_interconnect_t const * p_instance, uint8_t channel); 166 uint8_t channel); 177 uint8_t channel); 191 uint8_t channel); 202 uint8_t channel); 214 uint8_t channel); 235 uint8_t channel); 247 uint8_t channel) in nrfx_ppib_send_task_get() argument 251 return nrf_ppib_send_task_get(channel); in nrfx_ppib_send_task_get() 255 uint8_t channel) in nrfx_ppib_send_task_address_get() argument [all …]
|
| D | nrfx_ppi.h | 105 nrfx_err_t nrfx_ppi_channel_free(nrf_ppi_channel_t channel); 118 nrfx_err_t nrfx_ppi_channel_assign(nrf_ppi_channel_t channel, uint32_t eep, uint32_t tep); 130 nrfx_err_t nrfx_ppi_channel_fork_assign(nrf_ppi_channel_t channel, uint32_t fork_tep); 141 nrfx_err_t nrfx_ppi_channel_enable(nrf_ppi_channel_t channel); 152 nrfx_err_t nrfx_ppi_channel_disable(nrf_ppi_channel_t channel); 187 NRFX_STATIC_INLINE uint32_t nrfx_ppi_channel_to_mask(nrf_ppi_channel_t channel); 214 NRFX_STATIC_INLINE nrfx_err_t nrfx_ppi_channel_include_in_group(nrf_ppi_channel_t channel, 242 NRFX_STATIC_INLINE nrfx_err_t nrfx_ppi_channel_remove_from_group(nrf_ppi_channel_t channel, 306 NRFX_STATIC_INLINE uint32_t nrfx_ppi_channel_to_mask(nrf_ppi_channel_t channel) in nrfx_ppi_channel_to_mask() argument 308 return (1uL << (uint32_t) channel); in nrfx_ppi_channel_to_mask() [all …]
|
| D | nrfx_dppi.h | 114 nrfx_err_t nrfx_dppi_channel_free(nrfx_dppi_t const * p_instance, uint8_t channel); 125 nrfx_err_t nrfx_dppi_channel_enable(nrfx_dppi_t const * p_instance, uint8_t channel); 139 nrfx_err_t nrfx_dppi_channel_disable(nrfx_dppi_t const * p_instance, uint8_t channel); 184 uint8_t channel, 201 uint8_t channel, 259 nrfx_err_t nrfx_dppi_channel_free(uint8_t channel); 261 nrfx_err_t nrfx_dppi_channel_enable(uint8_t channel); 263 nrfx_err_t nrfx_dppi_channel_disable(uint8_t channel); 269 nrfx_err_t nrfx_dppi_channel_include_in_group(uint8_t channel, 272 nrfx_err_t nrfx_dppi_channel_remove_from_group(uint8_t channel,
|
| D | nrfx_timer.h | 258 uint32_t channel); 280 uint32_t channel); 360 void nrfx_timer_compare_int_enable(nrfx_timer_t const * p_instance, uint32_t channel); 368 void nrfx_timer_compare_int_disable(nrfx_timer_t const * p_instance, uint32_t channel); 378 uint32_t channel) in nrfx_timer_capture_task_address_get() argument 380 NRFX_ASSERT(channel < p_instance->cc_channel_count); in nrfx_timer_capture_task_address_get() 382 nrfy_timer_capture_task_get((uint8_t)channel)); in nrfx_timer_capture_task_address_get() 392 uint32_t channel) in nrfx_timer_compare_event_address_get() argument 394 NRFX_ASSERT(channel < p_instance->cc_channel_count); in nrfx_timer_compare_event_address_get() 396 nrfy_timer_compare_event_get((uint8_t)channel)); in nrfx_timer_compare_event_address_get()
|
| /hal_nordic-latest/nrfx/hal/ |
| D | nrf_ppi.h | 147 NRF_STATIC_INLINE void nrf_ppi_channel_enable(NRF_PPI_Type * p_reg, nrf_ppi_channel_t channel); 157 NRF_STATIC_INLINE void nrf_ppi_channel_disable(NRF_PPI_Type * p_reg, nrf_ppi_channel_t channel); 172 nrf_ppi_channel_t channel); 206 nrf_ppi_channel_t channel, 218 nrf_ppi_channel_t channel, 229 nrf_ppi_channel_t channel, 242 nrf_ppi_channel_t channel, 255 nrf_ppi_channel_t channel, 271 nrf_ppi_channel_t channel, 312 nrf_ppi_channel_t channel, [all …]
|
| D | nrf_saadc.h | 509 uint8_t channel); 531 uint8_t channel); 552 NRF_STATIC_INLINE nrf_saadc_event_t nrf_saadc_limit_event_get(uint8_t channel, 564 uint8_t channel, 576 uint8_t channel, 587 uint8_t channel, 599 uint8_t channel, 649 NRF_STATIC_INLINE uint32_t nrf_saadc_limit_int_get(uint8_t channel, 842 uint8_t channel, 853 uint8_t channel, [all …]
|
| D | nrf_egu.h | 171 NRF_STATIC_INLINE nrf_egu_task_t nrf_egu_trigger_task_get(uint8_t channel); 210 NRF_STATIC_INLINE nrf_egu_event_t nrf_egu_triggered_event_get(uint8_t channel); 248 NRF_STATIC_INLINE nrf_egu_int_mask_t nrf_egu_channel_int_get(uint8_t channel); 261 uint8_t channel); 283 uint8_t channel); 318 NRF_STATIC_INLINE nrf_egu_task_t nrf_egu_trigger_task_get(uint8_t channel) in nrf_egu_trigger_task_get() argument 320 return (nrf_egu_task_t)NRFX_OFFSETOF(NRF_EGU_Type, TASKS_TRIGGER[channel]); in nrf_egu_trigger_task_get() 341 NRF_STATIC_INLINE nrf_egu_event_t nrf_egu_triggered_event_get(uint8_t channel) in nrf_egu_triggered_event_get() argument 343 return (nrf_egu_event_t)NRFX_OFFSETOF(NRF_EGU_Type, EVENTS_TRIGGERED[channel]); in nrf_egu_triggered_event_get() 364 NRF_STATIC_INLINE nrf_egu_int_mask_t nrf_egu_channel_int_get(uint8_t channel) in nrf_egu_channel_int_get() argument [all …]
|
| D | nrf_pwm.h | 430 uint8_t channel); 452 uint8_t channel); 509 NRF_STATIC_INLINE void nrf_pwm_pin_set(NRF_PWM_Type * p_reg, uint8_t channel, uint32_t pin); 519 NRF_STATIC_INLINE uint32_t nrf_pwm_pin_get(NRF_PWM_Type const * p_reg, uint8_t channel); 645 uint8_t channel, 659 uint8_t channel); 733 uint8_t channel) in nrf_pwm_subscribe_set() argument 736 ((uint32_t)channel | NRF_SUBSCRIBE_PUBLISH_ENABLE); in nrf_pwm_subscribe_set() 747 uint8_t channel) in nrf_pwm_publish_set() argument 750 ((uint32_t)channel | NRF_SUBSCRIBE_PUBLISH_ENABLE); in nrf_pwm_publish_set() [all …]
|
| D | nrf_timer.h | 582 NRF_STATIC_INLINE nrf_timer_short_mask_t nrf_timer_short_compare_clear_get(uint8_t channel); 591 NRF_STATIC_INLINE nrf_timer_short_mask_t nrf_timer_short_compare_stop_get(uint8_t channel); 635 uint8_t channel); 657 uint8_t channel); 735 NRF_STATIC_INLINE nrf_timer_task_t nrf_timer_capture_task_get(uint8_t channel); 744 NRF_STATIC_INLINE nrf_timer_event_t nrf_timer_compare_event_get(uint8_t channel); 753 NRF_STATIC_INLINE nrf_timer_int_mask_t nrf_timer_compare_int_get(uint8_t channel); 851 NRF_STATIC_INLINE nrf_timer_short_mask_t nrf_timer_short_compare_clear_get(uint8_t channel) in nrf_timer_short_compare_clear_get() argument 853 return (nrf_timer_short_mask_t)((uint32_t)NRF_TIMER_SHORT_COMPARE0_CLEAR_MASK << channel); in nrf_timer_short_compare_clear_get() 856 NRF_STATIC_INLINE nrf_timer_short_mask_t nrf_timer_short_compare_stop_get(uint8_t channel) in nrf_timer_short_compare_stop_get() argument [all …]
|
| /hal_nordic-latest/nrfx/haly/ |
| D | nrfy_saadc.h | 189 uint8_t channel, in nrfy_saadc_channel_configure() argument 195 nrf_saadc_channel_init(p_reg, channel, p_config); in nrfy_saadc_channel_configure() 199 nrf_saadc_channel_input_set(p_reg, channel, p_input->input_p, p_input->input_n); in nrfy_saadc_channel_configure() 353 uint8_t channel) in nrfy_saadc_subscribe_set() argument 355 nrf_saadc_subscribe_set(p_reg, task, channel); in nrfy_saadc_subscribe_set() 369 uint8_t channel) in nrfy_saadc_publish_set() argument 371 nrf_saadc_publish_set(p_reg, event, channel); in nrfy_saadc_publish_set() 384 NRFY_STATIC_INLINE nrf_saadc_event_t nrfy_saadc_limit_event_get(uint8_t channel, in nrfy_saadc_limit_event_get() argument 387 return nrf_saadc_limit_event_get(channel, limit_type); in nrfy_saadc_limit_event_get() 392 uint8_t channel, in nrfy_saadc_channel_input_set() argument [all …]
|
| D | nrfy_timer.h | 162 nrf_timer_cc_channel_t channel) in nrfy_timer_capture_get() argument 164 nrf_timer_task_trigger(p_reg, nrf_timer_capture_task_get(channel)); in nrfy_timer_capture_get() 166 uint32_t cc = nrf_timer_cc_get(p_reg, channel); in nrfy_timer_capture_get() 265 uint8_t channel) in nrfy_timer_subscribe_set() argument 267 nrf_timer_subscribe_set(p_reg, task, channel); in nrfy_timer_subscribe_set() 282 uint8_t channel) in nrfy_timer_publish_set() argument 284 nrf_timer_publish_set(p_reg, event, channel); in nrfy_timer_publish_set() 367 NRFY_STATIC_INLINE nrf_timer_task_t nrfy_timer_capture_task_get(uint8_t channel) in nrfy_timer_capture_task_get() argument 369 return nrf_timer_capture_task_get(channel); in nrfy_timer_capture_task_get() 373 NRFY_STATIC_INLINE nrf_timer_event_t nrfy_timer_compare_event_get(uint8_t channel) in nrfy_timer_compare_event_get() argument [all …]
|
| D | nrfy_pwm.h | 309 uint8_t channel) in nrfy_pwm_subscribe_set() argument 311 nrf_pwm_subscribe_set(p_reg, task, channel); in nrfy_pwm_subscribe_set() 326 uint8_t channel) in nrfy_pwm_publish_set() argument 328 nrf_pwm_publish_set(p_reg, event, channel); in nrfy_pwm_publish_set() 373 NRFY_STATIC_INLINE uint32_t nrfy_pwm_pin_get(NRF_PWM_Type const * p_reg, uint8_t channel) in nrfy_pwm_pin_get() argument 376 uint32_t ret = nrf_pwm_pin_get(p_reg, channel); in nrfy_pwm_pin_get() 432 uint8_t channel, in nrfy_pwm_channel_idle_set() argument 435 nrf_pwm_channel_idle_set(p_reg, channel, value); in nrfy_pwm_channel_idle_set() 441 uint8_t channel) in nrfy_pwm_channel_idle_get() argument 443 return nrf_pwm_channel_idle_get(p_reg, channel); in nrfy_pwm_channel_idle_get()
|
| /hal_nordic-latest/drivers/nrf_802154/driver/src/ |
| D | nrf_802154_tx_power.c | 40 uint8_t channel, in nrf_802154_tx_power_convert_metadata_to_tx_power_split() argument 47 return nrf_802154_fal_tx_power_split(channel, power_unconstrained, p_tx_power_split); in nrf_802154_tx_power_convert_metadata_to_tx_power_split() 59 uint8_t channel, in nrf_802154_tx_power_split_pib_power_for_channel_get() argument 62 return nrf_802154_fal_tx_power_split(channel, in nrf_802154_tx_power_split_pib_power_for_channel_get()
|