diff --git a/RX_FSK/data/index.html b/RX_FSK/data/index.html
index 34c6446..32990b4 100644
--- a/RX_FSK/data/index.html
+++ b/RX_FSK/data/index.html
@@ -49,9 +49,9 @@
About
- RDZSonde
+ %VERSION_NAME%
Copyright © 2019 by Hansi Reiser, DL9RDZ
- (devel-version 2019-04-28)
+ (version %VERSION_ID%)
with mods by
Meinhard Guenther, DL2MF
This program is free software; you can redistribute it and/or
diff --git a/libraries/SondeLib/Scanner.cpp b/libraries/SondeLib/Scanner.cpp
index 20f1be9..b3ae429 100644
--- a/libraries/SondeLib/Scanner.cpp
+++ b/libraries/SondeLib/Scanner.cpp
@@ -51,6 +51,10 @@ void Scanner::plotResult()
if( ((i+j)%TICK2)==0) { row[j] |= 0x01; }
}
for(int y=0; y<8; y++) {
+ if(sonde.config.marker && y==1) {
+ // don't overwrite MHz marker text
+ if(i<3*8 || (i>=7*8&&i<10*8) || i>=13*8) continue;
+ }
u8x8->drawTile(i/8, y, 1, row+8*y);
}
}