From c3df8bf66d4db59a1005cb8c4fcaefb093b9afba Mon Sep 17 00:00:00 2001 From: Sepehr20mg10 <52413432+Sepehr20mg10@users.noreply.github.com> Date: Wed, 2 Dec 2020 03:36:24 +0330 Subject: [PATCH] Update sensors.h (#469) Reducing the minimum limit of barometric pressure (when using map as baro sensor) The highest motorable road is "Khardung La" with 49 kPa barometric pressure but I think 65 kPa is a safer limit than that. maybe it needs to be customizable in TS ? --- speeduino/sensors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/speeduino/sensors.h b/speeduino/sensors.h index 0912f6e8..449f6695 100644 --- a/speeduino/sensors.h +++ b/speeduino/sensors.h @@ -15,7 +15,7 @@ #define ADCFILTER_BARO 64 */ -#define BARO_MIN 87 +#define BARO_MIN 65 #define BARO_MAX 108 #define KNOCK_MODE_DIGITAL 1