/hal_nordic-3.4.0/nrfx/drivers/include/ |
D | nrfx_lpcomp.h | 61 nrf_lpcomp_input_t input; ///< Input to be monitored. member 83 .input = (nrf_lpcomp_input_t)_input, \
|
D | nrfx_comp.h | 98 nrf_comp_input_t input; ///< Input to be monitored. member 131 .input = (nrf_comp_input_t)_input, \
|
D | nrfx_adc.h | 100 .input = (nrf_adc_config_input_t)analog_input, \
|
/hal_nordic-3.4.0/nrfx/haly/ |
D | nrfy_lpcomp.h | 67 nrf_lpcomp_input_t input; ///< Input to be monitored. member 80 nrf_lpcomp_input_select(p_reg, p_config->input); in nrfy_lpcomp_periph_configure() 167 NRFY_STATIC_INLINE void nrfy_lpcomp_input_select(NRF_LPCOMP_Type * p_reg, nrf_lpcomp_input_t input) in nrfy_lpcomp_input_select() argument 169 nrf_lpcomp_input_select(p_reg, input); in nrfy_lpcomp_input_select()
|
D | nrfy_comp.h | 82 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()
|
D | nrfy_gpio.h | 71 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-3.4.0/nrfx/hal/ |
D | nrf_lpcomp.h | 202 NRF_STATIC_INLINE void nrf_lpcomp_input_select(NRF_LPCOMP_Type * p_reg, nrf_lpcomp_input_t input); 354 NRF_STATIC_INLINE void nrf_lpcomp_input_select(NRF_LPCOMP_Type * p_reg, nrf_lpcomp_input_t input) in nrf_lpcomp_input_select() argument 357 p_reg->PSEL = (NRF_PIN_NUMBER_TO_PORT(input) << LPCOMP_PSEL_PORT_Pos) | in nrf_lpcomp_input_select() 358 (NRF_PIN_NUMBER_TO_PIN(input) << LPCOMP_PSEL_PIN_Pos) | in nrf_lpcomp_input_select() 361 p_reg->PSEL = ((uint32_t)input << LPCOMP_PSEL_PSEL_Pos) | (p_reg->PSEL & ~LPCOMP_PSEL_PSEL_Msk); in nrf_lpcomp_input_select()
|
D | nrf_comp.h | 321 NRF_STATIC_INLINE void nrf_comp_input_select(NRF_COMP_Type * p_reg, nrf_comp_input_t input); 494 NRF_STATIC_INLINE void nrf_comp_input_select(NRF_COMP_Type * p_reg, nrf_comp_input_t input) in nrf_comp_input_select() argument 497 p_reg->PSEL = (NRF_PIN_NUMBER_TO_PORT(input) << COMP_PSEL_PORT_Pos) | in nrf_comp_input_select() 498 (NRF_PIN_NUMBER_TO_PIN(input) << COMP_PSEL_PIN_Pos) | in nrf_comp_input_select() 501 p_reg->PSEL = ((uint32_t)input << COMP_PSEL_PSEL_Pos) | (p_reg->PSEL & ~COMP_PSEL_PSEL_Msk); in nrf_comp_input_select()
|
D | nrf_gpio.h | 351 nrf_gpio_pin_input_t input, 853 nrf_gpio_pin_input_t input, in nrf_gpio_cfg() argument 875 ((uint32_t)input << GPIO_PIN_CNF_INPUT_Pos) | in nrf_gpio_cfg() 959 nrf_gpio_pin_input_t input = NRF_GPIO_PIN_INPUT_CONNECT; in nrf_gpio_cfg_watcher() local 961 nrf_gpio_reconfigure(pin_number, NULL, &input, NULL, NULL, NULL); in nrf_gpio_cfg_watcher() 967 nrf_gpio_pin_input_t input = NRF_GPIO_PIN_INPUT_DISCONNECT; in nrf_gpio_input_disconnect() local 969 nrf_gpio_reconfigure(pin_number, NULL, &input, NULL, NULL, NULL); in nrf_gpio_input_disconnect()
|
D | nrf_adc.h | 127 nrf_adc_config_input_t input; /**< ADC input selection. */ member 344 |((p_config->input << ADC_CONFIG_PSEL_Pos) & ADC_CONFIG_PSEL_Msk) in nrf_adc_init()
|
/hal_nordic-3.4.0/nrfx/drivers/src/ |
D | nrfx_gpiote.c | 967 static bool input_read_and_check(uint32_t * input, uint32_t * pins_to_check) in input_read_and_check() argument 978 uint32_t input_diff = input[port_idx] ^ new_input[port_idx]; in input_read_and_check() 979 input[port_idx] = new_input[port_idx]; in input_read_and_check() 998 uint32_t input[GPIO_COUNT] = {0}; in port_event_handle() local 1003 nrfy_gpio_ports_read(0, GPIO_COUNT, input); in port_event_handle() 1025 pin_state = nrf_bitmask_bit_is_set(pin, input); in port_event_handle() 1060 input[i] &= ~NRFX_BIT(rel_pin); in port_event_handle() 1064 input[i] |= NRFX_BIT(rel_pin); in port_event_handle() 1071 } while (input_read_and_check(input, pins_to_check)); in port_event_handle()
|
D | nrfx_lpcomp.c | 117 .input = p_config->input in nrfx_lpcomp_init()
|
D | nrfx_comp.c | 65 .input = p_config->input in comp_configure()
|
D | nrfx_spim.c | 218 nrf_gpio_pin_input_t input; in pin_init() local 235 input = NRF_GPIO_PIN_INPUT_DISCONNECT; in pin_init() 239 input = NRF_GPIO_PIN_INPUT_CONNECT; in pin_init() 242 nrfy_gpio_cfg(pin, dir, input, pull, drive, NRF_GPIO_PIN_NOSENSE); in pin_init()
|
D | nrfx_saadc.c | 237 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, ch_pos, NULL, &input); in saadc_generic_mode_set()
|
/hal_nordic-3.4.0/nrfx/samples/src/nrfx_saadc/advanced_non_blocking_internal_timer/ |
D | README.md | 30 Internal timer can only be used in the non-blocking mode with only a single input channel enabled.
|
/hal_nordic-3.4.0/nrfx/doc/ |
D | nrfx.doxyfile | 374 # 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-3.4.0/nrfx/samples/doc/ |
D | nrfx_examples.doxyfile | 372 # 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-3.4.0/nrfx/ |
D | CHANGELOG.md | 399 - Added function for reading the pin input buffer configuration in the GPIO HAL. 506 - Extended input pin configuration in the GPIOTE driver.
|