Home
last modified time | relevance | path

Searched refs:input (Results 1 – 20 of 20) sorted by relevance

/hal_nordic-latest/nrfx/drivers/include/
Dnrfx_lpcomp.h70 nrf_lpcomp_input_t input; ///< Input to be monitored. member
90 .input = (nrf_lpcomp_input_t)_input, \
102 .input = (nrf_lpcomp_input_t)_input, \
Dnrfx_comp.h106 nrf_comp_input_t input; ///< Input to be monitored. member
139 .input = (nrf_comp_input_t)_input, \
Dnrfx_adc.h100 .input = (nrf_adc_config_input_t)analog_input, \
/hal_nordic-latest/nrfx/hal/
Dnrf_comp.h329 NRF_STATIC_INLINE void nrf_comp_input_select(NRF_COMP_Type * p_reg, nrf_comp_input_t input);
505 NRF_STATIC_INLINE void nrf_comp_input_select(NRF_COMP_Type * p_reg, nrf_comp_input_t input) in nrf_comp_input_select() argument
508 p_reg->PSEL = (NRF_PIN_NUMBER_TO_PORT(input) << COMP_PSEL_PORT_Pos) | in nrf_comp_input_select()
509 (NRF_PIN_NUMBER_TO_PIN(input) << COMP_PSEL_PIN_Pos) | in nrf_comp_input_select()
512 p_reg->PSEL = ((uint32_t)input << COMP_PSEL_PSEL_Pos) | (p_reg->PSEL & ~COMP_PSEL_PSEL_Msk); in nrf_comp_input_select()
Dnrf_lpcomp.h391 NRF_STATIC_INLINE void nrf_lpcomp_input_select(NRF_LPCOMP_Type * p_reg, nrf_lpcomp_input_t input);
579 NRF_STATIC_INLINE void nrf_lpcomp_input_select(NRF_LPCOMP_Type * p_reg, nrf_lpcomp_input_t input) in nrf_lpcomp_input_select() argument
582 p_reg->PSEL = (NRF_PIN_NUMBER_TO_PORT(input) << LPCOMP_PSEL_PORT_Pos) | in nrf_lpcomp_input_select()
583 (NRF_PIN_NUMBER_TO_PIN(input) << LPCOMP_PSEL_PIN_Pos) | in nrf_lpcomp_input_select()
586 p_reg->PSEL = ((uint32_t)input << LPCOMP_PSEL_PSEL_Pos) | (p_reg->PSEL & ~LPCOMP_PSEL_PSEL_Msk); in nrf_lpcomp_input_select()
Dnrf_gpio.h385 nrf_gpio_pin_input_t input,
982 nrf_gpio_pin_input_t input, in nrf_gpio_cfg() argument
1004 ((uint32_t)input << GPIO_PIN_CNF_INPUT_Pos) | in nrf_gpio_cfg()
1117 nrf_gpio_pin_input_t input = NRF_GPIO_PIN_INPUT_CONNECT; in nrf_gpio_cfg_watcher() local
1119 nrf_gpio_reconfigure(pin_number, NULL, &input, NULL, NULL, NULL); in nrf_gpio_cfg_watcher()
1125 nrf_gpio_pin_input_t input = NRF_GPIO_PIN_INPUT_DISCONNECT; in nrf_gpio_input_disconnect() local
1127 nrf_gpio_reconfigure(pin_number, NULL, &input, NULL, NULL, NULL); in nrf_gpio_input_disconnect()
Dnrf_adc.h127 nrf_adc_config_input_t input; /**< ADC input selection. */ member
347 |((p_config->input << ADC_CONFIG_PSEL_Pos) & ADC_CONFIG_PSEL_Msk) in nrf_adc_init()
Dnrf_stm.h217 NRF_STATIC_INLINE bool nrf_stm_input_check(NRF_STM_Type const * p_reg, nrf_stm_input_t input);
558 NRF_STATIC_INLINE bool nrf_stm_input_check(NRF_STM_Type const * p_reg, nrf_stm_input_t input) in nrf_stm_input_check() argument
560 switch (input) in nrf_stm_input_check()
/hal_nordic-latest/nrfx/haly/
Dnrfy_lpcomp.h73 nrf_lpcomp_input_t input; ///< Input to be monitored. member
95 nrf_lpcomp_input_select(p_reg, p_config->input); in nrfy_lpcomp_periph_configure()
227 NRFY_STATIC_INLINE void nrfy_lpcomp_input_select(NRF_LPCOMP_Type * p_reg, nrf_lpcomp_input_t input) in nrfy_lpcomp_input_select() argument
229 nrf_lpcomp_input_select(p_reg, input); in nrfy_lpcomp_input_select()
Dnrfy_comp.h82 nrf_comp_input_t input; ///< Input to be monitored. member
106 nrf_comp_input_select(p_reg, p_config->input); in nrfy_comp_periph_configure()
261 NRFY_STATIC_INLINE void nrfy_comp_input_select(NRF_COMP_Type * p_reg, nrf_comp_input_t input) in nrfy_comp_input_select() argument
263 nrf_comp_input_select(p_reg, input); in nrfy_comp_input_select()
Dnrfy_gpio.h71 nrf_gpio_pin_input_t input, in nrfy_gpio_cfg() argument
76 nrf_gpio_cfg(pin_number, dir, input, pull, drive, sense); in nrfy_gpio_cfg()
/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_comp.c66 .input = p_config->input in comp_configure()
Dnrfx_lpcomp.c71 .input = p_config->input in lpcomp_configure()
Dnrfx_gpiote.c1526 static bool input_read_and_check(uint32_t * input, in input_read_and_check() argument
1541 uint32_t input_diff = input[port_idx] ^ new_input[port_idx]; in input_read_and_check()
1542 input[port_idx] = new_input[port_idx]; in input_read_and_check()
1562 uint32_t input[GPIO_COUNT] = {0}; in port_event_handle() local
1571 nrfy_gpio_ports_read(port_idx, 1, &input[port_idx]); in port_event_handle()
1591 pin_state = nrf_bitmask_bit_is_set(pin, input); in port_event_handle()
1626 input[port_idx] &= ~NRFX_BIT(rel_pin); in port_event_handle()
1630 input[port_idx] |= NRFX_BIT(rel_pin); in port_event_handle()
1640 } while (input_read_and_check(input, pins_to_check, p_cb->available_gpio_ports)); in port_event_handle()
Dnrfx_spim.c242 nrf_gpio_pin_input_t input; in pin_init() local
259 input = NRF_GPIO_PIN_INPUT_DISCONNECT; in pin_init()
263 input = NRF_GPIO_PIN_INPUT_CONNECT; in pin_init()
266 nrfy_gpio_cfg(pin, dir, input, pull, drive, NRF_GPIO_PIN_NOSENSE); in pin_init()
Dnrfx_saadc.c237 nrfy_saadc_channel_input_t input = {.input_p = NRF_SAADC_INPUT_DISABLED, in saadc_generic_mode_set() local
241 input = m_cb.channels_input[ch_pos]; in saadc_generic_mode_set()
245 nrfy_saadc_channel_configure(NRF_SAADC, (uint8_t)ch_pos, NULL, &input); in saadc_generic_mode_set()
/hal_nordic-latest/nrfx/samples/src/nrfx_saadc/advanced_non_blocking_internal_timer/
DREADME.md30 Internal timer can only be used in the non-blocking mode with only a single input channel enabled.
/hal_nordic-latest/nrfx/samples/doc/
Dnrfx_examples.doxyfile372 # to include (a tag file for) the STL sources as input, then you should set this
478 # speed. At this moment only the input processing can be done using multiple
599 # deal with such files in case they appear in the input. For filesystems that
777 # popen()) the command command input-file, where command is the value of the
778 # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
908 # Configuration options related to the input files
964 # be searched for input files as well.
981 # from the input.
1020 # searched for input files to be used with the \include or \dontinclude commands
1033 # invoke to filter for each input file. Doxygen will invoke the filter program
[all …]
/hal_nordic-latest/nrfx/doc/
Dnrfx.doxyfile374 # to include (a tag file for) the STL sources as input, then you should set this
480 # speed. At this moment only the input processing can be done using multiple
601 # deal with such files in case they appear in the input. For filesystems that
779 # popen()) the command command input-file, where command is the value of the
780 # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
910 # Configuration options related to the input files
974 # be searched for input files as well.
990 # from the input.
1029 # searched for input files to be used with the \include or \dontinclude commands
1042 # invoke to filter for each input file. Doxygen will invoke the filter program
[all …]
/hal_nordic-latest/nrfx/
DCHANGELOG.md10 - Added functions for buffered input and output shift control in the VPR CSR VIO HAL.
601 - Added function for reading the pin input buffer configuration in the GPIO HAL.
708 - Extended input pin configuration in the GPIOTE driver.