Home
last modified time | relevance | path

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

/Zephyr-latest/drivers/adc/
Dadc_ads1x4s0x.c452 uint8_t gpio_value; /* one bit per GPIO, 1 = high */ member
1215 ADS1X4S0X_REGISTER_GPIODAT_DAT_SET(gpio_dat, data->gpio_value); in ads1x4s0x_gpio_write_config()
1231 ADS1X4S0X_REGISTER_GPIODAT_DAT_SET(gpio_dat, data->gpio_value); in ads1x4s0x_gpio_write_value()
1253 data->gpio_value |= BIT(pin); in ads1x4s0x_gpio_set_output()
1255 data->gpio_value &= ~BIT(pin); in ads1x4s0x_gpio_set_output()
1279 data->gpio_value &= ~BIT(pin); in ads1x4s0x_gpio_set_input()
1302 data->gpio_value &= ~BIT(pin); in ads1x4s0x_gpio_deconfigure()
1330 data->gpio_value |= BIT(pin); in ads1x4s0x_gpio_set_pin_value()
1361 data->gpio_value = ADS1X4S0X_REGISTER_GPIODAT_DAT_GET(gpio_dat); in ads1x4s0x_gpio_get_pin_value()
1362 *value = (BIT(pin) & data->gpio_value) != 0; in ads1x4s0x_gpio_get_pin_value()
[all …]