Lines Matching refs:edata
75 const struct mlx90394_encoded_data *edata = (const struct mlx90394_encoded_data *)buffer; in mlx90394_decoder_decode() local
88 out->header.base_timestamp_ns = edata->header.timestamp; in mlx90394_decoder_decode()
90 if (edata->header.config_val == MLX90394_CTRL2_CONFIG_HIGH_SENSITIVITY_LOW_NOISE) { in mlx90394_decoder_decode()
96 mlx90394_convert_raw_magn_to_q31(edata->readings[0], &out->readings[0].x, in mlx90394_decoder_decode()
97 edata->header.config_val); in mlx90394_decoder_decode()
98 mlx90394_convert_raw_magn_to_q31(edata->readings[1], &out->readings[0].y, in mlx90394_decoder_decode()
99 edata->header.config_val); in mlx90394_decoder_decode()
100 mlx90394_convert_raw_magn_to_q31(edata->readings[2], &out->readings[0].z, in mlx90394_decoder_decode()
101 edata->header.config_val); in mlx90394_decoder_decode()
107 out->header.base_timestamp_ns = edata->header.timestamp; in mlx90394_decoder_decode()
110 mlx90394_convert_raw_temp_to_q31(edata->readings[3], &out->readings[0].temperature); in mlx90394_decoder_decode()