From 4d83f4febc79df29e84dd153c91218693247259d Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" Date: Sun, 25 Sep 2022 11:11:47 +1000 Subject: [PATCH 1/2] Change 6.2/8 ohm threshold to 4000 --- source/Core/BSP/Pinecilv2/BSP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Core/BSP/Pinecilv2/BSP.cpp b/source/Core/BSP/Pinecilv2/BSP.cpp index 3af1b474..0df95956 100644 --- a/source/Core/BSP/Pinecilv2/BSP.cpp +++ b/source/Core/BSP/Pinecilv2/BSP.cpp @@ -202,7 +202,7 @@ void FinishMeasureTipResistance() { uint8_t newRes = 0; if (reading > 8000) { // return; // Change nothing as probably disconnected tip - } else if (reading < 5000) { + } else if (reading < 4000) { newRes = 62; } else { newRes = 80; From 82f49b5f50dd27009f5a769d3c00fe4e00db3b41 Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" Date: Sun, 25 Sep 2022 11:34:07 +1000 Subject: [PATCH 2/2] Update version.h --- source/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/version.h b/source/version.h index 54f6b508..7e0ccd89 100644 --- a/source/version.h +++ b/source/version.h @@ -4,4 +4,4 @@ * i.e.: BUILD_VERSION = 'Rel. v2.08' --> Will generated to: 'v2.08.1a2b3c4' */ -#define BUILD_VERSION "v2.19" +#define BUILD_VERSION "v2.20"