From 96eb350d3dfc83f6dfb31bbab1427f9206acde79 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Sun, 12 Jun 2016 09:23:36 -0600 Subject: [PATCH] extend "ok" temp range to 40C, since battery charger on bench can drive temp above 35C at times in Bdale and Robert's production testing --- ao-tools/ao-test-baro/ao-test-baro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ao-tools/ao-test-baro/ao-test-baro.c b/ao-tools/ao-test-baro/ao-test-baro.c index e883de4a..b3058b80 100644 --- a/ao-tools/ao-test-baro/ao-test-baro.c +++ b/ao-tools/ao-test-baro/ao-test-baro.c @@ -169,7 +169,7 @@ do_baro(struct cc_usb *usb) { return 0; } - if (temperature < 20 || 35 < temperature) { + if (temperature < 20 || 40 < temperature) { printf ("weird temperature %f\n", temperature); free_baro(b); return 0; -- 2.30.2