version from config.h also for html page; minor polishing

This commit is contained in:
Hans P. Reiser 2019-04-28 14:17:52 +02:00
parent 9fea636d20
commit 5c37b3f0fa
2 changed files with 6 additions and 2 deletions

View File

@ -49,9 +49,9 @@
<div id="About" class="tabcontent">
<h3>About</h3>
RDZSonde<br>
%VERSION_NAME%<br>
Copyright &copy; 2019 by Hansi Reiser, DL9RDZ<br>
(devel-version 2019-04-28)<br>
(version %VERSION_ID%)<br>
with mods by <a href="https://www.dl2mf.de/" target="_blank">Meinhard Guenther, DL2MF</a><br>
<br>
This program is free software; you can redistribute it and/or<br>

View File

@ -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);
}
}