Home
last modified time | relevance | path

Searched refs:isource (Results 1 – 4 of 4) sorted by relevance

/hal_nordic-latest/nrfx/haly/
Dnrfy_comp.h80 nrf_isource_t isource; ///< Current source selected on analog input. member
104 nrf_comp_isource_set(p_reg, p_config->isource); in nrfy_comp_periph_configure()
253 NRFY_STATIC_INLINE void nrfy_comp_isource_set(NRF_COMP_Type * p_reg, nrf_isource_t isource) in nrfy_comp_isource_set() argument
255 nrf_comp_isource_set(p_reg, isource); in nrfy_comp_isource_set()
/hal_nordic-latest/nrfx/drivers/include/
Dnrfx_comp.h104 nrf_isource_t isource; ///< Current source selected on analog input. member
138 NRFX_COND_CODE_1(NRF_COMP_HAS_ISOURCE, (.isource = NRF_COMP_ISOURCE_OFF,), ()) \
/hal_nordic-latest/nrfx/hal/
Dnrf_comp.h320 NRF_STATIC_INLINE void nrf_comp_isource_set(NRF_COMP_Type * p_reg, nrf_isource_t isource);
499 NRF_STATIC_INLINE void nrf_comp_isource_set(NRF_COMP_Type * p_reg, nrf_isource_t isource) in nrf_comp_isource_set() argument
501 p_reg->ISOURCE = (isource << COMP_ISOURCE_ISOURCE_Pos) & COMP_ISOURCE_ISOURCE_Msk; in nrf_comp_isource_set()
/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_comp.c65 NRFX_COND_CODE_1(NRF_COMP_HAS_ISOURCE, (.isource = p_config->isource,), ()) in comp_configure()