diff options
author | IBNobody <ibnobody@gmail.com> | 2016-04-13 19:14:23 -0500 |
---|---|---|
committer | IBNobody <ibnobody@gmail.com> | 2016-04-13 19:14:23 -0500 |
commit | 01f5b35396e5558a39e6f35ef9128b96c289c05c (patch) | |
tree | f897786dddcd310f227ac157e79c7dd717e9b582 /quantum/audio.c | |
parent | 390fd3107a84277151ceb63255c859307221a290 (diff) | |
parent | a0194d7e5ff2f3d242a5c6508abf81b4ddf67a3e (diff) |
Merge remote-tracking branch 'refs/remotes/jackhumbert/master' into pc_planck
Diffstat (limited to 'quantum/audio.c')
-rw-r--r-- | quantum/audio.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/audio.c b/quantum/audio.c index 3a3a1a4910..f29d941d7c 100644 --- a/quantum/audio.c +++ b/quantum/audio.c @@ -247,6 +247,9 @@ ISR(TIMER3_COMPA_vect) { if (note_frequency > 0) { ICR3 = (int)(((double)F_CPU) / note_frequency); // Set max to the period OCR3A = (int)(((double)F_CPU) / note_frequency) >> 1; // Set compare to half the period + } else { + ICR3 = 0; + OCR3A = 0; } #endif |