Merge pull request #4458 from jbrazio/followup-4448

Fixes a compilation error introduced by #4448
This commit is contained in:
João Brázio 2016-07-29 18:44:30 +01:00 committed by GitHub
commit 3367e79fec

View file

@ -70,7 +70,7 @@ class Speaker: public Buzzer {
this->state.period = 1000000UL / this->state.tone.frequency;
this->state.counter =
(this->state.tone.counter * 1000L) / this->state.period;
(this->state.tone.duration * 1000L) / this->state.period;
this->state.period >>= 1;
this->state.counter <<= 1;