Merge pull request #669 from NeroBurner/fix_unsigned_comparison_warning_metronome

Fix unsigned/signed comparison warning in Metronome.cpp
This commit is contained in:
JF002
2021-09-18 20:33:45 +02:00
committed by GitHub

View File

@@ -78,7 +78,7 @@ Metronome::~Metronome() {
void Metronome::Refresh() {
if (metronomeStarted) {
if (xTaskGetTickCount() - startTime > 60 * configTICK_RATE_HZ / bpm) {
if (xTaskGetTickCount() - startTime > 60u * configTICK_RATE_HZ / static_cast<uint16_t>(bpm)) {
startTime += 60 * configTICK_RATE_HZ / bpm;
counter--;
if (counter == 0) {