Home
last modified time | relevance | path

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

/Zephyr-latest/drivers/sensor/st/iis2iclx/
Diis2iclx.c390 struct hts221_data *ht = &data->hts221; in iis2iclx_hum_convert() local
403 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in iis2iclx_hum_convert()
404 rh /= (ht->x1 - ht->x0); in iis2iclx_hum_convert()
Diis2iclx_shub.c157 struct hts221_data *ht = &data->hts221; in hts221_read_conv_data() local
171 ht->y0 = buf[0] / 2; in hts221_read_conv_data()
172 ht->y1 = buf[1] / 2; in hts221_read_conv_data()
173 ht->x0 = buf[6] | (buf[7] << 8); in hts221_read_conv_data()
174 ht->x1 = buf[10] | (buf[11] << 8); in hts221_read_conv_data()
/Zephyr-latest/drivers/mipi_dsi/
Ddsi_stm32.c111 DSI_HOST_TimeoutTypeDef *ht = data->host_timeouts; in mipi_dsi_stm32_log_config() local
114 LOG_DBG(" TimeoutCkdiv %u", ht->TimeoutCkdiv); in mipi_dsi_stm32_log_config()
115 LOG_DBG(" HighSpeedTransmissionTimeout %u", ht->HighSpeedTransmissionTimeout); in mipi_dsi_stm32_log_config()
116 LOG_DBG(" LowPowerReceptionTimeout %u", ht->LowPowerReceptionTimeout); in mipi_dsi_stm32_log_config()
117 LOG_DBG(" HighSpeedReadTimeout %u", ht->HighSpeedReadTimeout); in mipi_dsi_stm32_log_config()
118 LOG_DBG(" LowPowerReadTimeout %u", ht->LowPowerReadTimeout); in mipi_dsi_stm32_log_config()
119 LOG_DBG(" HighSpeedWriteTimeout %u", ht->HighSpeedWriteTimeout); in mipi_dsi_stm32_log_config()
120 LOG_DBG(" HighSpeedWritePrespMode %u", ht->HighSpeedWritePrespMode); in mipi_dsi_stm32_log_config()
121 LOG_DBG(" LowPowerWriteTimeout %u", ht->LowPowerWriteTimeout); in mipi_dsi_stm32_log_config()
122 LOG_DBG(" BTATimeout %u", ht->BTATimeout); in mipi_dsi_stm32_log_config()
/Zephyr-latest/drivers/sensor/st/ism330dhcx/
Dism330dhcx.c566 struct hts221_data *ht = &data->hts221; in ism330dhcx_hum_convert() local
579 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in ism330dhcx_hum_convert()
580 rh /= (ht->x1 - ht->x0); in ism330dhcx_hum_convert()
Dism330dhcx_shub.c152 struct hts221_data *ht = &data->hts221; in ism330dhcx_hts221_read_conv_data() local
165 ht->y0 = buf[0] / 2; in ism330dhcx_hts221_read_conv_data()
166 ht->y1 = buf[1] / 2; in ism330dhcx_hts221_read_conv_data()
167 ht->x0 = buf[6] | (buf[7] << 8); in ism330dhcx_hts221_read_conv_data()
168 ht->x1 = buf[10] | (buf[11] << 8); in ism330dhcx_hts221_read_conv_data()
/Zephyr-latest/drivers/sensor/st/lsm6dso/
Dlsm6dso.c559 struct hts221_data *ht = &data->hts221; in lsm6dso_hum_convert() local
572 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in lsm6dso_hum_convert()
573 rh /= (ht->x1 - ht->x0); in lsm6dso_hum_convert()
Dlsm6dso_shub.c141 struct hts221_data *ht = &data->hts221; in lsm6dso_hts221_read_conv_data() local
155 ht->y0 = buf[0] / 2; in lsm6dso_hts221_read_conv_data()
156 ht->y1 = buf[1] / 2; in lsm6dso_hts221_read_conv_data()
157 ht->x0 = buf[6] | (buf[7] << 8); in lsm6dso_hts221_read_conv_data()
158 ht->x1 = buf[10] | (buf[11] << 8); in lsm6dso_hts221_read_conv_data()
/Zephyr-latest/drivers/sensor/st/lsm6dso16is/
Dlsm6dso16is.c592 struct hts221_data *ht = &data->hts221; in lsm6dso16is_hum_convert() local
605 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in lsm6dso16is_hum_convert()
606 rh /= (ht->x1 - ht->x0); in lsm6dso16is_hum_convert()
Dlsm6dso16is_shub.c142 struct hts221_data *ht = &data->hts221; in lsm6dso16is_hts221_read_conv_data() local
156 ht->y0 = buf[0] / 2; in lsm6dso16is_hts221_read_conv_data()
157 ht->y1 = buf[1] / 2; in lsm6dso16is_hts221_read_conv_data()
158 ht->x0 = buf[6] | (buf[7] << 8); in lsm6dso16is_hts221_read_conv_data()
159 ht->x1 = buf[10] | (buf[11] << 8); in lsm6dso16is_hts221_read_conv_data()
/Zephyr-latest/drivers/sensor/st/lsm6dsv16x/
Dlsm6dsv16x.c796 struct hts221_data *ht = &data->hts221; in lsm6dsv16x_hum_convert() local
809 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in lsm6dsv16x_hum_convert()
810 rh /= (ht->x1 - ht->x0); in lsm6dsv16x_hum_convert()
Dlsm6dsv16x_shub.c142 struct hts221_data *ht = &data->hts221; in lsm6dsv16x_hts221_read_conv_data() local
156 ht->y0 = buf[0] / 2; in lsm6dsv16x_hts221_read_conv_data()
157 ht->y1 = buf[1] / 2; in lsm6dsv16x_hts221_read_conv_data()
158 ht->x0 = buf[6] | (buf[7] << 8); in lsm6dsv16x_hts221_read_conv_data()
159 ht->x1 = buf[10] | (buf[11] << 8); in lsm6dsv16x_hts221_read_conv_data()
/Zephyr-latest/drivers/clock_control/
Dclock_control_litex.c582 uint8_t no_cnt = 0, edge = 0, ht = 0, lt = 0, in litex_clk_set_divreg() local
589 ht = div / 2; in litex_clk_set_divreg()
590 lt = ht; in litex_clk_set_divreg()
599 (ht << HIGH_TIME_POS) | in litex_clk_set_divreg()
617 uint8_t no_cnt = 0, edge = 0, ht = 0, lt = 0, in litex_clk_set_mulreg() local
624 ht = mul / 2; in litex_clk_set_mulreg()
625 lt = ht; in litex_clk_set_mulreg()
632 bitset1 = (ht << HIGH_TIME_POS) | in litex_clk_set_mulreg()
891 uint32_t div, duty_ratio, ht; in litex_clk_calc_duty_percent() local
893 ht = duty->num; in litex_clk_calc_duty_percent()
[all …]
/Zephyr-latest/doc/_extensions/zephyr/doxytooltip/static/tippy/
Dtippy-bundle.umd.min.js6ht(),n.interactiveDebounce!==r.interactiveDebounce&&(pt(),F=u(wt,r.interactiveDebounce));n.trigger… function