aboutsummaryrefslogtreecommitdiffstats
path: root/quantum
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-04-17 18:14:42 -0400
committerJack Humbert <jack.humb@gmail.com>2016-04-17 18:14:42 -0400
commitce463ef424c5bd26b84ead7de5f31eab366f98eb (patch)
treef97f634ce31104ab74244c4b252fefee097d71f0 /quantum
parent319fbe344b81081ced4c44792a7b868d5400edbb (diff)
downloadfirmware-ce463ef424c5bd26b84ead7de5f31eab366f98eb.tar.gz
firmware-ce463ef424c5bd26b84ead7de5f31eab366f98eb.tar.bz2
firmware-ce463ef424c5bd26b84ead7de5f31eab366f98eb.zip
audio fixes
Diffstat (limited to 'quantum')
-rw-r--r--quantum/audio.c6
-rw-r--r--quantum/audio.h1
2 files changed, 4 insertions, 3 deletions
diff --git a/quantum/audio.c b/quantum/audio.c
index 855e97361..e0413051a 100644
--- a/quantum/audio.c
+++ b/quantum/audio.c
@@ -257,7 +257,7 @@ ISR(TIMER3_COMPA_vect) {
place = 0.0;
}
ICR3 = (int)(((double)F_CPU) / (frequencies[voice_place] * CPU_PRESCALER)); // Set max to the period
- OCR3A = (int)((((double)F_CPU) / (note_frequency * CPU_PRESCALER)) * note_timbre); // Set compare to half the period
+ OCR3A = (int)((((double)F_CPU) / (frequencies[voice_place] * CPU_PRESCALER)) * note_timbre); // Set compare to half the period
//OCR3A = (int)(((double)F_CPU) / (frequencies[voice_place] * CPU_PRESCALER)) >> 1 * duty_place; // Set compare to half the period
place++;
// if (duty_counter > (frequencies[voice_place] / 500)) {
@@ -353,6 +353,7 @@ if (audio_config.enable) {
if (note)
stop_all_notes();
+ notes = true;
notes_pointer = np;
notes_count = n_count;
@@ -378,7 +379,6 @@ if (audio_config.enable) {
TCCR3A |= _BV(COM3A1);
#endif
- notes = true;
}
}
@@ -408,6 +408,7 @@ if (audio_config.enable && voices < 8) {
if (notes)
stop_all_notes();
+ note = true;
#ifdef PWM_AUDIO
freq = freq / SAMPLE_RATE;
#endif
@@ -439,7 +440,6 @@ if (audio_config.enable && voices < 8) {
TCCR3A |= _BV(COM3A1);
#endif
- note = true;
}
}
diff --git a/quantum/audio.h b/quantum/audio.h
index 3aba8370a..05d314c94 100644
--- a/quantum/audio.h
+++ b/quantum/audio.h
@@ -3,6 +3,7 @@
#include <avr/io.h>
#include <util/delay.h>
#include "musical_notes.h"
+#include "song_list.h"
#ifndef AUDIO_H
#define AUDIO_H