From 4b000c8d18baa2cf1e658ed4e06e716ecaec69db Mon Sep 17 00:00:00 2001 From: Just Call Me Koko Date: Tue, 5 Sep 2023 13:46:49 -0400 Subject: [PATCH] Revert wardrive history limit --- esp32_marauder/Display.cpp | 1 - esp32_marauder/WiFiScan.h | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/esp32_marauder/Display.cpp b/esp32_marauder/Display.cpp index a67b445..95c8f17 100644 --- a/esp32_marauder/Display.cpp +++ b/esp32_marauder/Display.cpp @@ -776,7 +776,6 @@ void Display::buildBanner(String msg, int xpos) this->tft.setFreeFont(NULL); // Font 4 selected this->tft.setTextSize(BANNER_TEXT_SIZE); // Font size scaling is x1 this->tft.setTextColor(TFT_WHITE, TFT_BLACK); // Black text, no background colour - //this->tft.drawCentreString(msg.c_str(), SCREEN_WIDTH / 2, TEXT_HEIGHT, BANNER_TEXT_SIZE); this->showCenterText(msg, STATUS_BAR_WIDTH); /* diff --git a/esp32_marauder/WiFiScan.h b/esp32_marauder/WiFiScan.h index 3fc1b13..8c011e3 100644 --- a/esp32_marauder/WiFiScan.h +++ b/esp32_marauder/WiFiScan.h @@ -125,7 +125,7 @@ esp_err_t esp_wifi_80211_tx(wifi_interface_t ifx, const void *buffer, int len, b LinkedList* stations; };*/ -#define mac_history_len 512 +#define mac_history_len 93 struct mac_addr { unsigned char bytes[6];