From afe2ecdc1483e7e5b37d059644974fedc8ce0ec9 Mon Sep 17 00:00:00 2001 From: Neil McKechnie Date: Fri, 17 Sep 2021 12:44:27 +0100 Subject: [PATCH] Update IODevice.cpp Remove potentially irritating diag messages --- IODevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IODevice.cpp b/IODevice.cpp index cf90efe..a48564b 100644 --- a/IODevice.cpp +++ b/IODevice.cpp @@ -257,7 +257,7 @@ int IODevice::readAnalogue(VPIN vpin) { return dev->_readAnalogue(vpin); } #ifdef DIAG_IO - DIAG(F("IODevice::readAnalogue(): Vpin %d not found!"), (int)vpin); + //DIAG(F("IODevice::readAnalogue(): Vpin %d not found!"), (int)vpin); #endif return false; }