Home
last modified time | relevance | path

Searched refs:hyst (Results 1 – 8 of 8) sorted by relevance

/hal_nordic-latest/nrfx/drivers/include/
Dnrfx_lpcomp.h65 nrf_lpcomp_hyst_t hyst; ///< Comparator hysteresis. member
89 NRFX_COND_CODE_1(LPCOMP_FEATURE_HYST_PRESENT, (.hyst = NRF_LPCOMP_HYST_NOHYST,), ()) \
100 NRFX_COND_CODE_1(LPCOMP_FEATURE_HYST_PRESENT, (.hyst = NRF_LPCOMP_HYST_NOHYST,), ()) \
Dnrfx_comp.h102 nrf_comp_hyst_t hyst; ///< Comparator hysteresis. member
137 .hyst = NRF_COMP_HYST_NO_HYST, \
/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_lpcomp.c62 NRFX_COND_CODE_1(LPCOMP_FEATURE_HYST_PRESENT, (.hyst = p_config->config.hyst), ()) in lpcomp_configure()
68 NRFX_COND_CODE_1(LPCOMP_FEATURE_HYST_PRESENT, (.hyst = p_config->config.hyst), ()) in lpcomp_configure()
Dnrfx_comp.c64 .hyst = p_config->hyst, in comp_configure()
/hal_nordic-latest/nrfx/haly/
Dnrfy_lpcomp.h71 nrf_lpcomp_hyst_t hyst; ///< Comparator hysteresis. member
92 nrf_lpcomp_hysteresis_set(p_reg, p_config->hyst); in nrfy_lpcomp_periph_configure()
211 nrf_lpcomp_hyst_t hyst) in nrfy_lpcomp_hysteresis_set() argument
213 nrf_lpcomp_hysteresis_set(p_reg, hyst); in nrfy_lpcomp_hysteresis_set()
Dnrfy_comp.h78 nrf_comp_hyst_t hyst; ///< Comparator hysteresis. member
102 nrf_comp_hysteresis_set(p_reg, p_config->hyst); in nrfy_comp_periph_configure()
245 NRFY_STATIC_INLINE void nrfy_comp_hysteresis_set(NRF_COMP_Type * p_reg, nrf_comp_hyst_t hyst) in nrfy_comp_hysteresis_set() argument
247 nrf_comp_hysteresis_set(p_reg, hyst); in nrfy_comp_hysteresis_set()
/hal_nordic-latest/nrfx/hal/
Dnrf_lpcomp.h196 nrf_lpcomp_hyst_t hyst; ///< LPCOMP hysteresis. member
410 nrf_lpcomp_hyst_t hyst);
556 p_reg->HYST = ((p_config->hyst) << LPCOMP_HYST_HYST_Pos) & LPCOMP_HYST_HYST_Msk; in nrf_lpcomp_configure()
599 nrf_lpcomp_hyst_t hyst) in nrf_lpcomp_hysteresis_set() argument
601 p_reg->HYST = ((hyst) << LPCOMP_HYST_HYST_Pos) & LPCOMP_HYST_HYST_Msk; in nrf_lpcomp_hysteresis_set()
Dnrf_comp.h311 NRF_STATIC_INLINE void nrf_comp_hysteresis_set(NRF_COMP_Type * p_reg, nrf_comp_hyst_t hyst);
493 NRF_STATIC_INLINE void nrf_comp_hysteresis_set(NRF_COMP_Type * p_reg, nrf_comp_hyst_t hyst) in nrf_comp_hysteresis_set() argument
495 p_reg->HYST = (hyst << COMP_HYST_HYST_Pos) & COMP_HYST_HYST_Msk; in nrf_comp_hysteresis_set()