made creds non-static since BLETick functionality no longer in BLE file

This commit is contained in:
2026-01-04 12:22:54 -06:00
parent 636aaf64f8
commit c56e6ab5f3

View File

@@ -13,10 +13,10 @@ std::atomic<bool> finalAuth{false};
std::mutex dataMutex; std::mutex dataMutex;
wifi_auth_mode_t auth; wifi_auth_mode_t auth;
static std::string SSID = ""; std::string SSID = "";
static std::string TOKEN = ""; std::string TOKEN = "";
static std::string PASS = ""; std::string PASS = "";
static std::string UNAME = ""; std::string UNAME = "";
// Global pointers to characteristics for notification support // Global pointers to characteristics for notification support
std::atomic<NimBLECharacteristic*> ssidListChar = nullptr; std::atomic<NimBLECharacteristic*> ssidListChar = nullptr;