From aa946bbe3671ea025196de249f4f6232e616fe92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Br=C3=A1zio?= Date: Thu, 2 Oct 2025 09:47:00 +0100 Subject: [PATCH] WITH_BRIDGE was not implementing setBridgeState() --- src/helpers/CommonCLI.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/helpers/CommonCLI.h b/src/helpers/CommonCLI.h index 4344ff1d..364cf518 100644 --- a/src/helpers/CommonCLI.h +++ b/src/helpers/CommonCLI.h @@ -57,10 +57,12 @@ public: virtual void clearStats() = 0; virtual void applyTempRadioParams(float freq, float bw, uint8_t sf, uint8_t cr, int timeout_mins) = 0; -#ifdef WITH_ESPNOW_BRIDGE +#ifdef WITH_BRIDGE virtual void setBridgeState(bool enable) = 0; +#ifdef WITH_ESPNOW_BRIDGE virtual void updateBridgeChannel(int ch) = 0; #endif +#endif }; class CommonCLI {