Home
last modified time | relevance | path

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

/nrf_hw_models-3.6.0/src/HW_models/
Dcrc.c16 static uint8_t rev_byte(uint8_t input){ in rev_byte() argument
17 return ((input * 0x80200802ULL) & 0x0884422110ULL) in rev_byte()
24 static uint32_t rev_24(uint32_t input){ in rev_24() argument
26 ret = rev_byte((input >> 0) & 0xff) << 16 in rev_24()
27 | rev_byte((input >> 8) & 0xff) << 8 in rev_24()
28 | rev_byte((input >> 16) & 0xff); in rev_24()
35 static uint32_t rev_16(uint16_t input){ in rev_16() argument
37 ret = rev_byte((input >> 0) & 0xff) << 8 in rev_16()
38 | rev_byte((input >> 8) & 0xff) << 0; in rev_16()
DNRF_GPIO.c532 int input = (NRF_GPIO_regs[port].PIN_CNF[n] & GPIO_PIN_CNF_INPUT_Msk) in nrf_gpio_regw_sideeffects_PIN_CNF() local
534 if (input != ((INPUT_mask[port] >> n) & 0x1)) { in nrf_gpio_regw_sideeffects_PIN_CNF()
/nrf_hw_models-3.6.0/docs/
DGPIO.md13 * Do not model input pulls.
15 That is, inputs just sample the input pin, and outputs just deliver a logical level: high or low.
21 * From an input stimuli file (`-gpio_in_file=<path>`). Which follows the stimuli format
24 * By shortcuiting the input and output, either set from a configuration file
61 The configuration file can define output->input short-circuits.
63 Note that these shorts only work one way: output to input.
77 the input pin that will be shorted to.
94 ### Comments in input files
96 For both stimuli input and configuration files, '#' is treated as a comment delimiter: That
DREADME_impl_status.md28 | **GPIO** | General purpose input/output | &#x2714; | &#x10102; | For 52: See [NRF_GPIO.c](../src/…
/nrf_hw_models-3.6.0/src/nrfx/hal/
Dnrf_gpio.c64 nrf_gpio_pin_input_t input, in nrf_gpio_cfg() argument
86 ((uint32_t)input << GPIO_PIN_CNF_INPUT_Pos) | in nrf_gpio_cfg()