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: Thomas Stranger <thomas.stranger@outlook.com>
This commit is contained in:
Thomas Stranger 2022-06-15 14:33:48 +02:00 committed by Maureen Helm
commit 38b23fd825

View file

@ -30,7 +30,7 @@ static const uint16_t measure_wait_us[2][2] = {
/* shtc1: 14.4ms, 0.94ms */ /* shtc1: 14.4ms, 0.94ms */
{ 14400, 940 }, /* shtc1 */ { 14400, 940 }, /* shtc1 */
/* shtc3: 12.1ms, 0.8ms */ /* shtc3: 12.1ms, 0.8ms */
{ 1210, 800 }, /* shtc3 */ { 12100, 800 }, /* shtc3 */
}; };
/* /*