From 75b5806eb707e84c16f3d7f9619b5a7e38ea5d6e Mon Sep 17 00:00:00 2001 From: Neil McKechnie Date: Wed, 15 Mar 2023 09:39:20 +0000 Subject: [PATCH] Shorten I2C error message --- I2CManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/I2CManager.cpp b/I2CManager.cpp index aad6418..d0d8550 100644 --- a/I2CManager.cpp +++ b/I2CManager.cpp @@ -74,7 +74,7 @@ void I2CManagerClass::begin(void) { _beginCompleted = true; // Check for short-circuit or floating lines (no pull-up) on I2C before enabling I2C - const FSH *message = F("WARNING: Possible short-circuit or inadequate pullup on I2C %S line"); + const FSH *message = F("WARNING: Check I2C %S line for short/pullup"); pinMode(SDA, INPUT); if (!digitalRead(SDA)) DIAG(message, F("SDA"));