From a1aa52cbea10b7247f0b66b832381ba1146199af Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 18 Sep 2022 16:18:56 +0200 Subject: [PATCH] [PHY] Suppress unused arguments --- src/protocols/PhysicalLayer/PhysicalLayer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/protocols/PhysicalLayer/PhysicalLayer.cpp b/src/protocols/PhysicalLayer/PhysicalLayer.cpp index 71185909..e0fad08d 100644 --- a/src/protocols/PhysicalLayer/PhysicalLayer.cpp +++ b/src/protocols/PhysicalLayer/PhysicalLayer.cpp @@ -252,5 +252,7 @@ void PhysicalLayer::updateDirectBuffer(uint8_t bit) { #endif int16_t PhysicalLayer::setDIOMapping(RADIOLIB_PIN_TYPE pin, uint8_t value) { + (void)pin; + (void)value; return(RADIOLIB_ERR_UNSUPPORTED); }