Home
last modified time | relevance | path

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

/nrf_hw_models-latest/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()
DNHW_54_AAR_CCM_ECB.c749 uint8_t input[16]; in nhw_ECB_logic() local
758 memset(input, 0, sizeof(input)); in nhw_ECB_logic()
765 input, 16, in nhw_ECB_logic()
776 BLECrypt_if_aes_128(key_be, input, output); in nhw_ECB_logic()
DNRF_GPIO.c645 uint input = (NRF_GPIO_regs[port].PIN_CNF[n] & GPIO_PIN_CNF_INPUT_Msk) in nrf_gpio_regw_sideeffects_PIN_CNF() local
647 if (input != ((st->INPUT_mask >> n) & 0x1)) { in nrf_gpio_regw_sideeffects_PIN_CNF()
/nrf_hw_models-latest/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
40 With the first one, the callback will be called each time an *input gpio pin register* is modified.
88 The configuration file can define output->input short-circuits.
90 Note that these shorts only work one way: output to input.
104 the input pin that will be shorted to.
121 ### Comments in input files
123 For both stimuli input and configuration files, '#' is treated as a comment delimiter: That
DREADME_impl_status.md33 | **GPIO** | General purpose input/output | &#x2714; | &#x…
/nrf_hw_models-latest/src/nrfx/hal/
Dnrf_gpio.c66 nrf_gpio_pin_input_t input, in nrf_gpio_cfg() argument
88 ((uint32_t)input << GPIO_PIN_CNF_INPUT_Pos) | in nrf_gpio_cfg()