~ruther/qmk_firmware

976d0a327b563ff83d0f7bcee41b2360877bface — Jack Humbert 9 years ago a90d687
add silent notes
1 files changed, 3 insertions(+), 0 deletions(-)

M quantum/audio.c
M quantum/audio.c => quantum/audio.c +3 -0
@@ 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