Searched refs:input (Results 1 – 5 of 5) sorted by relevance
16 static uint8_t rev_byte(uint8_t input){ in rev_byte() argument17 return ((input * 0x80200802ULL) & 0x0884422110ULL) in rev_byte()24 static uint32_t rev_24(uint32_t input){ in rev_24() argument26 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() argument37 ret = rev_byte((input >> 0) & 0xff) << 8 in rev_16()38 | rev_byte((input >> 8) & 0xff) << 0; in rev_16()
532 int input = (NRF_GPIO_regs[port].PIN_CNF[n] & GPIO_PIN_CNF_INPUT_Msk) in nrf_gpio_regw_sideeffects_PIN_CNF() local534 if (input != ((INPUT_mask[port] >> n) & 0x1)) { in nrf_gpio_regw_sideeffects_PIN_CNF()
13 * 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 format24 * By shortcuiting the input and output, either set from a configuration file61 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 files96 For both stimuli input and configuration files, '#' is treated as a comment delimiter: That
28 | **GPIO** | General purpose input/output | ✔ | 𐄂 | For 52: See [NRF_GPIO.c](../src/…
64 nrf_gpio_pin_input_t input, in nrf_gpio_cfg() argument86 ((uint32_t)input << GPIO_PIN_CNF_INPUT_Pos) | in nrf_gpio_cfg()