Lines Matching full:input

54     NRF_COMP_INPUT_0 = COMP_PSEL_PSEL_AnalogInput0,        /*!< AIN0 selected as analog input. */
55 NRF_COMP_INPUT_1 = COMP_PSEL_PSEL_AnalogInput1, /*!< AIN1 selected as analog input. */
56 NRF_COMP_INPUT_2 = COMP_PSEL_PSEL_AnalogInput2, /*!< AIN2 selected as analog input. */
57 NRF_COMP_INPUT_3 = COMP_PSEL_PSEL_AnalogInput3, /*!< AIN3 selected as analog input. */
58 NRF_COMP_INPUT_4 = COMP_PSEL_PSEL_AnalogInput4, /*!< AIN4 selected as analog input. */
59 NRF_COMP_INPUT_5 = COMP_PSEL_PSEL_AnalogInput5, /*!< AIN5 selected as analog input. */
60 NRF_COMP_INPUT_6 = COMP_PSEL_PSEL_AnalogInput6, /*!< AIN6 selected as analog input. */
62 NRF_COMP_INPUT_7 = COMP_PSEL_PSEL_AnalogInput7, /*!< AIN7 selected as analog input. */
65 NRF_COMP_VDD_DIV2 = COMP_PSEL_PSEL_VddDiv2, /*!< VDD/2 selected as analog input. */
134 * @brief COMP current source selection on analog input.
166 …NRF_COMP_EVENT_DOWN = offsetof(NRF_COMP_Type, EVENTS_DOWN), /*!< Input voltage crossed the thres…
167 …NRF_COMP_EVENT_UP = offsetof(NRF_COMP_Type, EVENTS_UP), /*!< Input voltage crossed the thres…
168 …NRF_COMP_EVENT_CROSS = offsetof(NRF_COMP_Type, EVENTS_CROSS) /*!< Input voltage crossed the thres…
252 * @brief Function for setting the current source on the analog input.
254 * @param[in] isource COMP current source selection on analog input.
261 * @brief Function for selecting the active input of the COMP.
263 * @param[in] input Input to be selected.
265 __STATIC_INLINE void nrf_comp_input_select(nrf_comp_input_t input);
428 __STATIC_INLINE void nrf_comp_input_select(nrf_comp_input_t input) in nrf_comp_input_select() argument
430 NRF_COMP->PSEL = ((uint32_t)input << COMP_PSEL_PSEL_Pos); in nrf_comp_input_select()