Searched refs:fifo_status (Results 1 – 5 of 5) sorted by relevance
| /Zephyr-latest/drivers/sensor/st/lsm6dsv16x/ |
| D | lsm6dsv16x_rtio_stream.c | 193 fifo_th = (lsm6dsv16x->fifo_status[1] & 0x80) ? 1 : 0; in lsm6dsv16x_read_fifo_cb() 194 fifo_full = (lsm6dsv16x->fifo_status[1] & 0x20) ? 1 : 0; in lsm6dsv16x_read_fifo_cb() 195 fifo_count = (uint16_t)lsm6dsv16x->fifo_status[1] & 0x1U; in lsm6dsv16x_read_fifo_cb() 196 fifo_count = (fifo_count << 8) | lsm6dsv16x->fifo_status[0]; in lsm6dsv16x_read_fifo_cb() 268 rx_data->int_status = lsm6dsv16x->fifo_status[1]; in lsm6dsv16x_read_fifo_cb() 404 lsm6dsv16x->fifo_status[0] = lsm6dsv16x->ibi_payload.fifo_status1; in lsm6dsv16x_stream_irq_handler() 405 lsm6dsv16x->fifo_status[1] = lsm6dsv16x->ibi_payload.fifo_status2; in lsm6dsv16x_stream_irq_handler() 409 lsm6dsv16x->fifo_status[0] = lsm6dsv16x->fifo_status[1] = 0; in lsm6dsv16x_stream_irq_handler() 430 lsm6dsv16x->fifo_status, 2, NULL); in lsm6dsv16x_stream_irq_handler()
|
| D | lsm6dsv16x.h | 158 uint8_t fifo_status[2]; member
|
| /Zephyr-latest/drivers/adc/ |
| D | adc_cc13xx_cc26xx.c | 254 uint32_t fifo_status; in adc_cc13xx_cc26xx_isr() local 260 fifo_status = AUXADCGetFifoStatus(); in adc_cc13xx_cc26xx_isr() 261 LOG_DBG("ISR flags 0x%08X fifo 0x%08X", ev_status, fifo_status); in adc_cc13xx_cc26xx_isr() 262 if ((fifo_status & (AUX_ANAIF_ADCFIFOSTAT_OVERFLOW | AUX_ANAIF_ADCFIFOSTAT_UNDERFLOW))) { in adc_cc13xx_cc26xx_isr() 265 if ((fifo_status & AUX_ANAIF_ADCFIFOSTAT_EMPTY_M)) { in adc_cc13xx_cc26xx_isr()
|
| /Zephyr-latest/drivers/mbox/ |
| D | mbox_ti_omap.c | 56 uint32_t fifo_status[OMAP_MAILBOX_NUM_MSGS]; member 107 if (regs->fifo_status[channel]) { in omap_mailbox_send()
|
| /Zephyr-latest/drivers/can/ |
| D | can_mcan.c | 693 uint32_t fifo_status; in can_mcan_get_message() local 696 err = can_mcan_read_reg(dev, fifo_status_reg, &fifo_status); in can_mcan_get_message() 701 while (FIELD_GET(CAN_MCAN_RXF0S_F0FL, fifo_status) != 0U) { in can_mcan_get_message() 702 get_idx = FIELD_GET(CAN_MCAN_RXF0S_F0GI, fifo_status); in can_mcan_get_message() 785 err = can_mcan_read_reg(dev, fifo_status_reg, &fifo_status); in can_mcan_get_message()
|