From bce14023f99bd32e12d69170057374ae9d7ffa30 Mon Sep 17 00:00:00 2001 From: jgromes Date: Fri, 2 Feb 2024 16:36:50 +0100 Subject: [PATCH] [PHY] Fixed godmode not exposing private member (#950) --- src/protocols/PhysicalLayer/PhysicalLayer.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/protocols/PhysicalLayer/PhysicalLayer.h b/src/protocols/PhysicalLayer/PhysicalLayer.h index 4847b826..173c2939 100644 --- a/src/protocols/PhysicalLayer/PhysicalLayer.h +++ b/src/protocols/PhysicalLayer/PhysicalLayer.h @@ -487,8 +487,10 @@ class PhysicalLayer { #endif -#if !RADIOLIB_EXCLUDE_DIRECT_RECEIVE +#if !RADIOLIB_GODMODE protected: +#endif +#if !RADIOLIB_EXCLUDE_DIRECT_RECEIVE void updateDirectBuffer(uint8_t bit); #endif