Skip to content

Commit

Permalink
Do not display LoRa QRG at startup when there is no LoRa
Browse files Browse the repository at this point in the history
  • Loading branch information
oe1wkl committed Feb 25, 2025
1 parent 5b2bd5b commit 80e4ad3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Software/src/Version 6/m32_v6.ino
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,9 @@ void displayStartUp(uint16_t volt) {
s.reserve(18);
s = PROJECTNAME + String(" ");
MorseOutput::clearDisplay();
#ifndef LORA_DISABLED
s += String(MorsePreferences::loraQRG / 10000);
#endif
MorseOutput::printOnStatusLine( true, 0, s);
s = "V." ;
vsn = String(VERSION_MAJOR) + "." + String(VERSION_MINOR) ;
Expand Down
2 changes: 1 addition & 1 deletion Software/src/Version 6/morsedefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const String PROJECTNAME = "Morserino-32";

#define VERSION_MAJOR 6
#define VERSION_MINOR 0
#define VERSION_PATCH 1
#define VERSION_PATCH 2

#define BETA true

Expand Down

0 comments on commit 80e4ad3

Please sign in to comment.