Home
last modified time | relevance | path

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

/Zephyr-latest/drivers/sensor/bosch/bme280/
Dbme280_decoder.c10 uint16_t *frame_count) in bme280_decoder_get_frame_count() argument
22 *frame_count = edata->has_temp ? 1 : 0; in bme280_decoder_get_frame_count()
25 *frame_count = edata->has_press ? 1 : 0; in bme280_decoder_get_frame_count()
28 *frame_count = edata->has_humidity ? 1 : 0; in bme280_decoder_get_frame_count()
34 if (*frame_count > 0) { in bme280_decoder_get_frame_count()
/Zephyr-latest/drivers/sensor/memsic/mmc56x3/
Dmmc56x3_decoder.c10 uint16_t *frame_count) in mmc56x3_decoder_get_frame_count() argument
22 *frame_count = edata->has_temp ? 1 : 0; in mmc56x3_decoder_get_frame_count()
25 *frame_count = edata->has_magn_x ? 1 : 0; in mmc56x3_decoder_get_frame_count()
28 *frame_count = edata->has_magn_y ? 1 : 0; in mmc56x3_decoder_get_frame_count()
31 *frame_count = edata->has_magn_z ? 1 : 0; in mmc56x3_decoder_get_frame_count()
34 *frame_count = in mmc56x3_decoder_get_frame_count()
41 if (*frame_count > 0) { in mmc56x3_decoder_get_frame_count()
/Zephyr-latest/drivers/sensor/adi/adxl372/
Dadxl372_decoder.c150 uint16_t *frame_count) in adxl372_decoder_get_frame_count() argument
168 *frame_count = 1; in adxl372_decoder_get_frame_count()
178 *frame_count = 0; in adxl372_decoder_get_frame_count()
184 *frame_count = in adxl372_decoder_get_frame_count()
191 *frame_count = in adxl372_decoder_get_frame_count()
198 *frame_count = in adxl372_decoder_get_frame_count()
205 *frame_count = in adxl372_decoder_get_frame_count()
/Zephyr-latest/doc/hardware/peripherals/sensor/
Daccel_stream.c77 uint32_t frame_count; in main() local
80 &frame_count); in main()
92 for (int i = 0; i < frame_count; i++) { in main()
/Zephyr-latest/drivers/sensor/adi/adxl362/
Dadxl362_decoder.c221 uint16_t *frame_count) in adxl362_decoder_get_frame_count() argument
239 *frame_count = 1; in adxl362_decoder_get_frame_count()
249 *frame_count = 0; in adxl362_decoder_get_frame_count()
259 *frame_count = data->fifo_byte_count / 8; in adxl362_decoder_get_frame_count()
262 *frame_count = data->fifo_byte_count / 6; in adxl362_decoder_get_frame_count()
270 *frame_count = data->fifo_byte_count / 8; in adxl362_decoder_get_frame_count()
/Zephyr-latest/drivers/sensor/adi/adxl367/
Dadxl367_decoder.c592 uint16_t frame_count = 0; in adxl367_get_frame_count() local
595 frame_count = data->fifo_byte_count * 8 / (data->packet_size * 12); in adxl367_get_frame_count()
597 frame_count = data->fifo_byte_count / data->packet_size; in adxl367_get_frame_count()
600 return frame_count; in adxl367_get_frame_count()
607 uint16_t *frame_count) in adxl367_decoder_get_frame_count() argument
625 *frame_count = 1; in adxl367_decoder_get_frame_count()
635 *frame_count = 0; in adxl367_decoder_get_frame_count()
641 *frame_count = adxl367_get_frame_count(data); in adxl367_decoder_get_frame_count()
648 *frame_count = adxl367_get_frame_count(data); in adxl367_decoder_get_frame_count()
655 *frame_count = adxl367_get_frame_count(data); in adxl367_decoder_get_frame_count()
[all …]
/Zephyr-latest/drivers/sensor/asahi_kasei/akm09918c/
Dakm09918c_decoder.c12 uint16_t *frame_count) in akm09918c_decoder_get_frame_count() argument
18 *frame_count = 1; in akm09918c_decoder_get_frame_count()
/Zephyr-latest/drivers/sensor/adi/adxl345/
Dadxl345_decoder.c159 uint16_t *frame_count) in adxl345_decoder_get_frame_count() argument
177 *frame_count = 1; in adxl345_decoder_get_frame_count()
187 *frame_count = 0; in adxl345_decoder_get_frame_count()
192 *frame_count = in adxl345_decoder_get_frame_count()
/Zephyr-latest/drivers/sensor/st/lsm6dsv16x/
Dlsm6dsv16x_decoder.c140 uint16_t *frame_count) in lsm6dsv16x_decoder_get_frame_count() argument
160 *frame_count = 1; in lsm6dsv16x_decoder_get_frame_count()
163 *frame_count = 0; in lsm6dsv16x_decoder_get_frame_count()
221 *frame_count = tot_accel_fifo_words; in lsm6dsv16x_decoder_get_frame_count()
228 *frame_count = tot_gyro_fifo_words; in lsm6dsv16x_decoder_get_frame_count()
233 *frame_count = tot_temp_fifo_words; in lsm6dsv16x_decoder_get_frame_count()
237 *frame_count = tot_sflp_game_rotation; in lsm6dsv16x_decoder_get_frame_count()
240 *frame_count = tot_sflp_gravity; in lsm6dsv16x_decoder_get_frame_count()
243 *frame_count = tot_sflp_gbias; in lsm6dsv16x_decoder_get_frame_count()
246 *frame_count = 0; in lsm6dsv16x_decoder_get_frame_count()
/Zephyr-latest/samples/sensor/accel_polling/src/
Dmain.c92 uint16_t frame_count; in print_accels_stream() local
95 (struct sensor_chan_spec) {SENSOR_CHAN_ACCEL_XYZ, 0}, &frame_count); in print_accels_stream()
108 for (int i = 0; i < frame_count; i++) { in print_accels_stream()
/Zephyr-latest/drivers/sensor/bosch/bma4xx/
Dbma4xx.c462 uint16_t *frame_count) in bma4xx_decoder_get_frame_count() argument
477 *frame_count = edata->has_accel ? 1 : 0; in bma4xx_decoder_get_frame_count()
480 *frame_count = edata->has_temp ? 1 : 0; in bma4xx_decoder_get_frame_count()
/Zephyr-latest/drivers/sensor/tdk/icm42688/
Dicm42688_decoder.c585 uint16_t *frame_count) in icm42688_decoder_get_frame_count() argument
605 *frame_count = 1; in icm42688_decoder_get_frame_count()
640 *frame_count = count; in icm42688_decoder_get_frame_count()
/Zephyr-latest/drivers/sensor/
Ddefault_rtio_sensor.c315 uint16_t *frame_count) in get_frame_count() argument
337 *frame_count = 1; in get_frame_count()
Dsensor_shell.c360 uint16_t frame_count; in sensor_shell_processing_callback() local
396 while (decoder->get_frame_count(buf, ch, &frame_count) == 0) { in sensor_shell_processing_callback()
398 frame_count, sensor_channel_name[ch.chan_type], ch.chan_idx); in sensor_shell_processing_callback()
/Zephyr-latest/include/zephyr/drivers/
Dsensor.h483 uint16_t *frame_count);