Skip to content

Commit

Permalink
Fix millis reference
Browse files Browse the repository at this point in the history
  • Loading branch information
leptun committed Jun 9, 2021
1 parent fab04db commit 8c3d76f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Firmware/Dcodes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -935,9 +935,9 @@ void dcode_20()
xfdump_full_dump_and_reset();
else
{
unsigned long ts = millis();
unsigned long ts = _millis();
xfdump_dump();
ts = millis() - ts;
ts = _millis() - ts;
DBG(_N("dump completed in %lums\n"), ts);
}
}
Expand Down

0 comments on commit 8c3d76f

Please sign in to comment.