From 2b2dc2925fd6f80e921ccca35a4582120d2e20ef Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 19 Feb 2023 17:14:31 +0100 Subject: [PATCH] [PHY] Fixed unused variable warning --- src/protocols/PhysicalLayer/PhysicalLayer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/protocols/PhysicalLayer/PhysicalLayer.cpp b/src/protocols/PhysicalLayer/PhysicalLayer.cpp index 48704bee..e62edf73 100644 --- a/src/protocols/PhysicalLayer/PhysicalLayer.cpp +++ b/src/protocols/PhysicalLayer/PhysicalLayer.cpp @@ -115,6 +115,7 @@ int16_t PhysicalLayer::standby() { } int16_t PhysicalLayer::standby(uint8_t mode) { + (void)mode; return(RADIOLIB_ERR_UNSUPPORTED); }