Home
last modified time | relevance | path

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

/Zephyr-latest/drivers/sensor/tdk/icm45686/
Dicm45686_stream.c44 bool fifo_full = int_status & REG_INT1_STATUS0_FIFO_FULL(true); in should_flush_fifo() local
47 (trig_fifo_full && trig_fifo_full->opt == SENSOR_STREAM_DATA_DROP && fifo_full)) { in should_flush_fifo()
65 bool fifo_full = int_status & REG_INT1_STATUS0_FIFO_FULL(true); in should_read_fifo() local
68 (trig_fifo_full && trig_fifo_full->opt == SENSOR_STREAM_DATA_INCLUDE && fifo_full)) { in should_read_fifo()
117 data->stream.data.events.fifo_full = int_status & REG_INT1_STATUS0_FIFO_FULL(true); in icm45686_handle_event_actions()
165 REG_INT1_STATUS0_FIFO_FULL(data->stream.data.events.fifo_full); in icm45686_handle_event_actions()
325 data->stream.settings.enabled.fifo_full = false; in icm45686_event_handler()
427 (a->settings.enabled.fifo_full != b->settings.enabled.fifo_full) || in settings_changed()
428 (a->settings.opt.fifo_full != b->settings.opt.fifo_full); in settings_changed()
460 stream.settings.enabled.fifo_full = true; in icm45686_stream_submit()
[all …]
Dicm45686.h110 bool fifo_full : 1; member
115 enum sensor_stream_data_opt fifo_full; member
119 bool fifo_full : 1; member
128 bool fifo_full : 1; member
/Zephyr-latest/drivers/sensor/st/lsm6dsv16x/
Dlsm6dsv16x_rtio_stream.c42 pin_int.fifo_full = PROPERTY_DISABLE; in lsm6dsv16x_config_fifo()
46 pin_int.fifo_full = (fifo_irq & FIFO_FULL) ? PROPERTY_ENABLE : PROPERTY_DISABLE; in lsm6dsv16x_config_fifo()
166 uint8_t fifo_th = 0, fifo_full = 0; in lsm6dsv16x_read_fifo_cb() local
194 fifo_full = (lsm6dsv16x->fifo_status[1] & 0x20) ? 1 : 0; in lsm6dsv16x_read_fifo_cb()
200 bool has_fifo_full_trig = fifo_full_cfg != NULL && fifo_full == 1; in lsm6dsv16x_read_fifo_cb()
/Zephyr-latest/drivers/serial/
Duart_xmc4xxx.c284 bool fifo_full; in uart_xmc4xxx_fifo_fill() local
291 fifo_full = XMC_USIC_CH_TXFIFO_IsFull(config->uart); in uart_xmc4xxx_fifo_fill()
292 if (fifo_full) { in uart_xmc4xxx_fifo_fill()
/Zephyr-latest/drivers/sensor/
Dsensor_shell.c214 TRIGGER_DATA_ENTRY(SENSOR_TRIG_FIFO_FULL, fifo_full, NULL),