Home
last modified time | relevance | path

Searched refs:alert (Results 1 – 25 of 42) sorted by relevance

12

/Zephyr-latest/drivers/gpio/
Dgpio_rt1718s.c41 uint16_t alert, mask; in rt1718s_alert_worker() local
46 if (rt1718s_reg_burst_read(dev, RT1718S_REG_ALERT, (uint8_t *)&alert, in rt1718s_alert_worker()
47 sizeof(alert)) || in rt1718s_alert_worker()
60 alert &= mask; in rt1718s_alert_worker()
61 if (alert) { in rt1718s_alert_worker()
63 if (rt1718s_reg_burst_write(dev, RT1718S_REG_ALERT, (uint8_t *)&alert, in rt1718s_alert_worker()
64 sizeof(alert))) { in rt1718s_alert_worker()
76 if (alert & RT1718S_REG_ALERT_VENDOR_DEFINED_ALERT) { in rt1718s_alert_worker()
Dgpio_nct38xx.c53 uint16_t alert, alert_mask = 0; in nct38xx_init_interrupt() local
70 if (i2c_burst_read_dt(data->i2c_dev, NCT38XX_REG_ALERT, (uint8_t *)&alert, sizeof(alert))) { in nct38xx_init_interrupt()
74 alert &= alert_mask; in nct38xx_init_interrupt()
75 if (alert) { in nct38xx_init_interrupt()
76 if (i2c_burst_write_dt(data->i2c_dev, NCT38XX_REG_ALERT, (uint8_t *)&alert, in nct38xx_init_interrupt()
77 sizeof(alert))) { in nct38xx_init_interrupt()
Dgpio_nct38xx_alert.c62 uint16_t alert, mask; in nct38xx_alert_is_active() local
67 ret = i2c_burst_read_dt(mfd->i2c_dev, NCT38XX_REG_ALERT, (uint8_t *)&alert, in nct38xx_alert_is_active()
68 sizeof(alert)); in nct38xx_alert_is_active()
78 alert &= mask; in nct38xx_alert_is_active()
79 if (alert) { in nct38xx_alert_is_active()
81 (uint8_t *)&alert, sizeof(alert)); in nct38xx_alert_is_active()
92 if (alert & BIT(NCT38XX_REG_ALERT_VENDOR_DEFINDED_ALERT)) { in nct38xx_alert_is_active()
DKconfig.nct38xx39 int "NCT38XX GPIO alert handler init priority"
43 NCT38XX alert handler initialization priority. This initialization
44 must take place after the alert GPIO device is initialized.
DKconfig.rt1718s30 bool "RT1718S alert handler"
/Zephyr-latest/samples/sensor/isl29035/
DREADME.rst42 Next alert outside 315 .. 415
46 Next alert outside 252 .. 352
49 Next alert outside 197 .. 297
52 Next alert outside 137 .. 237
55 Next alert outside 76 .. 176
58 Next alert outside 131 .. 231
61 Next alert outside 185 .. 285
64 Next alert outside 251 .. 351
67 Next alert outside 303 .. 403
/Zephyr-latest/drivers/sensor/microchip/tcn75a/
DKconfig24 depends on $(dt_compat_any_has_prop,$(DT_COMPAT_MICROCHIP_TCN75A),alert-gpios)
30 depends on $(dt_compat_any_has_prop,$(DT_COMPAT_MICROCHIP_TCN75A),alert-gpios)
/Zephyr-latest/samples/sensor/sht3xd/boards/
Dnrf51_ble400.overlay11 alert-gpios = <&gpio0 2 GPIO_ACTIVE_HIGH>;
Dfrdm_k64f.overlay11 alert-gpios = <&gpioe 26 GPIO_ACTIVE_HIGH>;
Dnrf52840dk_nrf52840.overlay11 alert-gpios = <&gpio1 10 GPIO_ACTIVE_HIGH>;
Dsltb004a.overlay11 alert-gpios = <&gpiof 6 GPIO_ACTIVE_HIGH>;
Dnucleo_l476rg.overlay12 alert-gpios = <&gpioa 9 GPIO_ACTIVE_HIGH>;
/Zephyr-latest/drivers/sensor/ti/ina23x/
DKconfig47 …ompat_any_has_prop,$(DT_COMPAT_TI_INA230),alert-gpios) || $(dt_compat_any_has_prop,$(DT_COMPAT_TI_…
/Zephyr-latest/samples/sensor/tmp108/
DKconfig22 int "RH [%] high threshold for alert trigger in celsius"
33 int "RH [%] low threshold for alert trigger in celsius"
/Zephyr-latest/samples/sensor/thermometer/boards/
Dfrdm_k22f.overlay21 alert-gpios = <&gpioc 2 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
Dnucleo_h7a3zi_q.overlay26 alert-gpios = <&gpiob 8 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
/Zephyr-latest/tests/bluetooth/tester/src/audio/btp/
Dbtp_hap.h39 uint8_t alert; member
/Zephyr-latest/drivers/sensor/sensirion/sht3xd/
DKconfig29 depends on $(dt_compat_any_has_prop,$(DT_COMPAT_SENSIRION_SHT3XD),alert-gpios)
35 depends on $(dt_compat_any_has_prop,$(DT_COMPAT_SENSIRION_SHT3XD),alert-gpios)
/Zephyr-latest/tests/drivers/build_all/sensor/
Di2c.dtsi227 alert-gpios = <&test_gpio 0 0>;
471 alert-gpios = <&test_gpio 0 0>;
597 alert-limit = <0>;
598 alert-gpios = <&test_gpio 0 0>;
613 alert-limit = <0>;
614 alert-gpios = <&test_gpio 0 0>;
622 alert-config = <0>;
623 alert-gpios = <&test_gpio 0 0>;
731 alert-gpios = <&test_gpio 0 0>;
1087 alert-gpios = <&test_gpio 0 0>;
[all …]
/Zephyr-latest/samples/sensor/jc42/
DREADME.rst16 When the temperature moves outside the window an alert is given, and the
43 and alert GPIO, build this sample app using:
/Zephyr-latest/tests/drivers/build_all/adc/boards/
Dnative_sim.overlay52 alert-rdy-gpios = <&test_gpio 0 0>;
59 alert-rdy-gpios = <&test_gpio 0 0>;
72 alert-rdy-gpios = <&test_gpio 0 0>;
79 alert-rdy-gpios = <&test_gpio 0 0>;
/Zephyr-latest/drivers/dma/
DKconfig.iproc_pax45 PAX DMA API blocks until dma completion alert is
Ddma_iproc_pax_v1.c581 k_sem_give(&pd->ring[idx].alert); in rm_isr()
623 k_sem_init(&pd->ring[r].alert, 0, 1); in dma_iproc_pax_init()
729 if (k_sem_take(&ring->alert, K_MSEC(PAX_DMA_TIMEOUT)) != 0) { in wait_for_pkt_completion()
/Zephyr-latest/include/zephyr/drivers/usb_c/
Dusbc_tcpc.h126 enum tcpc_alert alert);
146 void (*alert_handler_cb)(const struct device *dev, void *data, enum tcpc_alert alert);
/Zephyr-latest/tests/bluetooth/tester/src/audio/
Dbtp_hap.c198 err = bt_ias_client_alert_write(conn, (enum bt_ias_alert_lvl)cp->alert); in iac_set_alert()

12