Home
last modified time | relevance | path

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

/Zephyr-latest/drivers/sensor/melexis/mlx90394/
Dmlx90394.c66 uint8_t sample_l, uint8_t sample_h) in mlx90394_convert_magn() argument
75 conv_val = (int16_t)((uint16_t)sample_l | (uint16_t)(sample_h << 8)) * scale; in mlx90394_convert_magn()
81 static void mlx90394_convert_temp(struct sensor_value *val, uint8_t sample_l, uint8_t sample_h) in mlx90394_convert_temp() argument
83 int64_t conv_val = sample_l | (sample_h << 8) * MLX90394_MICRO_CELSIUS_PER_BIT; in mlx90394_convert_temp()