From fc4366d80f3990510b269a2f3039f61c3da82ec0 Mon Sep 17 00:00:00 2001 From: richonguzman Date: Tue, 20 Jun 2023 21:05:54 -0400 Subject: [PATCH] minor correction to function name --- src/LoRa_APRS_iGate.cpp | 2 +- src/utils.cpp | 2 +- src/utils.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index fa50409..1c164e5 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -41,7 +41,7 @@ void setup() { Serial.begin(115200); pinMode(greenLed, OUTPUT); delay(1000); - Utils::setupDiplay(); + Utils::setupDisplay(); WIFI_Utils::setup(); LoRa_Utils::setup(); Utils::validateDigiFreqs(); diff --git a/src/utils.cpp b/src/utils.cpp index 7df6638..4916b9e 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -66,7 +66,7 @@ String getLocalIP() { return "IP : " + String(WiFi.localIP()[0]) + "." + String(WiFi.localIP()[1]) + "." + String(WiFi.localIP()[2]) + "." + String(WiFi.localIP()[3]); } -void setupDiplay() { +void setupDisplay() { setup_display(); digitalWrite(greenLed,HIGH); Serial.println("\nStarting iGate: " + Config.callsign + " Version: " + versionDate); diff --git a/src/utils.h b/src/utils.h index a3b71f7..9b38c75 100644 --- a/src/utils.h +++ b/src/utils.h @@ -7,7 +7,7 @@ namespace Utils { void processStatus(); String getLocalIP(); -void setupDiplay(); +void setupDisplay(); void activeStations(); void checkBeaconInterval(); void checkDisplayInterval();