From c56e6ab5f3f481078d1bddb773f5ed25ee3fa30e Mon Sep 17 00:00:00 2001 From: pulipakaa24 Date: Sun, 4 Jan 2026 12:22:54 -0600 Subject: [PATCH] made creds non-static since BLETick functionality no longer in BLE file --- include/BLE.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/BLE.cpp b/include/BLE.cpp index 3b9c106..ca24e63 100644 --- a/include/BLE.cpp +++ b/include/BLE.cpp @@ -13,10 +13,10 @@ std::atomic finalAuth{false}; std::mutex dataMutex; wifi_auth_mode_t auth; -static std::string SSID = ""; -static std::string TOKEN = ""; -static std::string PASS = ""; -static std::string UNAME = ""; +std::string SSID = ""; +std::string TOKEN = ""; +std::string PASS = ""; +std::string UNAME = ""; // Global pointers to characteristics for notification support std::atomic ssidListChar = nullptr;