From: Bdale Garbee Date: Sun, 12 Jun 2016 15:23:36 +0000 (-0600) Subject: extend "ok" temp range to 40C, since battery charger on bench can drive temp above X-Git-Tag: 1.6.4~1^2~18 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=96eb350d3dfc83f6dfb31bbab1427f9206acde79;ds=sidebyside 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 --- 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;