mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-22 13:26:10 +02:00
0.8.51
* added history protection mask * merge PR: display graph improvements #1347
This commit is contained in:
parent
f2c432a5cd
commit
ed3e93274e
5 changed files with 8 additions and 5 deletions
|
@ -135,7 +135,7 @@ class DisplayMono {
|
|||
}
|
||||
|
||||
void initPowerGraph(uint8_t width, uint8_t height) {
|
||||
DBGPRINTLN("---- Init Power Graph ----");
|
||||
DBGPRINTLN(F("---- Init Power Graph ----"));
|
||||
mPgWidth = width;
|
||||
mPgHeight = height;
|
||||
mPgData = new float[mPgWidth];
|
||||
|
@ -207,7 +207,7 @@ class DisplayMono {
|
|||
mDisplay->drawLine(xoff, yoff, xoff + mPgWidth, yoff); // horizontal axis
|
||||
|
||||
// do not draw as long as time is not set correctly and no data was received
|
||||
if ((mDisplayData->pGraphStartTime == 0) || (mDisplayData->pGraphEndTime == 0) || (mDisplayData->utcTs < 1) || (mPgMaxPwr < 1) || (mPgLastPos < 1))
|
||||
if ((mDisplayData->pGraphStartTime == 0) || (mDisplayData->pGraphEndTime == 0) || (mDisplayData->utcTs != 0) || (mPgMaxPwr != 0) || (mPgLastPos != 0))
|
||||
return;
|
||||
|
||||
// draw X scale
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue