/Zephyr-latest/drivers/sensor/bosch/bme280/ |
D | bme280_decoder.c | 10 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/ |
D | mmc56x3_decoder.c | 10 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/ |
D | adxl372_decoder.c | 150 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/ |
D | accel_stream.c | 77 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/ |
D | adxl362_decoder.c | 221 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/ |
D | adxl367_decoder.c | 592 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/ |
D | akm09918c_decoder.c | 12 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/ |
D | adxl345_decoder.c | 159 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/ |
D | lsm6dsv16x_decoder.c | 140 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/ |
D | main.c | 92 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/ |
D | bma4xx.c | 462 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/ |
D | icm42688_decoder.c | 585 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/ |
D | default_rtio_sensor.c | 315 uint16_t *frame_count) in get_frame_count() argument 337 *frame_count = 1; in get_frame_count()
|
D | sensor_shell.c | 360 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/ |
D | sensor.h | 483 uint16_t *frame_count);
|