Commit 38b23fd8 authored by Thomas Stranger's avatar Thomas Stranger Committed by Maureen Helm
Browse files

drivers: shtc3: fix normal mode measurement time.



The measurement time in normal mode was too short.
With this commit the maximum value of the datasheet is applied.

Signed-off-by: default avatarThomas Stranger <thomas.stranger@outlook.com>
parent e928300f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ static const uint16_t measure_wait_us[2][2] = {
	/* shtc1: 14.4ms, 0.94ms */
	{ 14400, 940 }, /* shtc1 */
	/* shtc3: 12.1ms, 0.8ms */
	{ 1210, 800 }, /* shtc3 */
	{ 12100, 800 }, /* shtc3 */
};

/*