qmk-firmware/quantum/audio/audio_avr.c

806 lines
25 KiB
C
Raw Normal View History

/* Copyright 2016 Jack Humbert
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2016-01-20 05:06:52 +00:00
#include <stdio.h>
#include <string.h>
//#include <math.h>
#if defined(__AVR__)
2019-08-30 18:19:03 +00:00
# include <avr/pgmspace.h>
# include <avr/interrupt.h>
# include <avr/io.h>
#endif
2016-04-17 07:52:38 +00:00
#include "print.h"
2016-01-20 05:06:52 +00:00
#include "audio.h"
#include "keymap.h"
2017-09-06 16:37:57 +00:00
#include "wait.h"
2016-01-20 05:06:52 +00:00
2016-04-16 03:38:21 +00:00
#include "eeconfig.h"
#define CPU_PRESCALER 8
2016-04-19 21:00:45 +00:00
// -----------------------------------------------------------------------------
// Timer Abstractions
// -----------------------------------------------------------------------------
2016-01-20 05:06:52 +00:00
2019-08-30 18:19:03 +00:00
// Currently we support timers 1 and 3 used at the sime time, channels A-C,
// pins PB5, PB6, PB7, PC4, PC5, and PC6
#if defined(C6_AUDIO)
2019-08-30 18:19:03 +00:00
# define CPIN_AUDIO
# define CPIN_SET_DIRECTION DDRC |= _BV(PORTC6);
# define INIT_AUDIO_COUNTER_3 TCCR3A = (0 << COM3A1) | (0 << COM3A0) | (1 << WGM31) | (0 << WGM30);
# define ENABLE_AUDIO_COUNTER_3_ISR TIMSK3 |= _BV(OCIE3A)
# define DISABLE_AUDIO_COUNTER_3_ISR TIMSK3 &= ~_BV(OCIE3A)
# define ENABLE_AUDIO_COUNTER_3_OUTPUT TCCR3A |= _BV(COM3A1);
# define DISABLE_AUDIO_COUNTER_3_OUTPUT TCCR3A &= ~(_BV(COM3A1) | _BV(COM3A0));
# define TIMER_3_PERIOD ICR3
# define TIMER_3_DUTY_CYCLE OCR3A
# define TIMER3_AUDIO_vect TIMER3_COMPA_vect
2017-06-27 02:24:30 +00:00
#endif
#if defined(C5_AUDIO)
2019-08-30 18:19:03 +00:00
# define CPIN_AUDIO
# define CPIN_SET_DIRECTION DDRC |= _BV(PORTC5);
# define INIT_AUDIO_COUNTER_3 TCCR3A = (0 << COM3B1) | (0 << COM3B0) | (1 << WGM31) | (0 << WGM30);
# define ENABLE_AUDIO_COUNTER_3_ISR TIMSK3 |= _BV(OCIE3B)
# define DISABLE_AUDIO_COUNTER_3_ISR TIMSK3 &= ~_BV(OCIE3B)
# define ENABLE_AUDIO_COUNTER_3_OUTPUT TCCR3A |= _BV(COM3B1);
# define DISABLE_AUDIO_COUNTER_3_OUTPUT TCCR3A &= ~(_BV(COM3B1) | _BV(COM3B0));
# define TIMER_3_PERIOD ICR3
# define TIMER_3_DUTY_CYCLE OCR3B
# define TIMER3_AUDIO_vect TIMER3_COMPB_vect
2017-06-27 02:24:30 +00:00
#endif
#if defined(C4_AUDIO)
2019-08-30 18:19:03 +00:00
# define CPIN_AUDIO
# define CPIN_SET_DIRECTION DDRC |= _BV(PORTC4);
# define INIT_AUDIO_COUNTER_3 TCCR3A = (0 << COM3C1) | (0 << COM3C0) | (1 << WGM31) | (0 << WGM30);
# define ENABLE_AUDIO_COUNTER_3_ISR TIMSK3 |= _BV(OCIE3C)
# define DISABLE_AUDIO_COUNTER_3_ISR TIMSK3 &= ~_BV(OCIE3C)
# define ENABLE_AUDIO_COUNTER_3_OUTPUT TCCR3A |= _BV(COM3C1);
# define DISABLE_AUDIO_COUNTER_3_OUTPUT TCCR3A &= ~(_BV(COM3C1) | _BV(COM3C0));
# define TIMER_3_PERIOD ICR3
# define TIMER_3_DUTY_CYCLE OCR3C
# define TIMER3_AUDIO_vect TIMER3_COMPC_vect
2017-06-27 02:24:30 +00:00
#endif
#if defined(B5_AUDIO)
2019-08-30 18:19:03 +00:00
# define BPIN_AUDIO
# define BPIN_SET_DIRECTION DDRB |= _BV(PORTB5);
# define INIT_AUDIO_COUNTER_1 TCCR1A = (0 << COM1A1) | (0 << COM1A0) | (1 << WGM11) | (0 << WGM10);
# define ENABLE_AUDIO_COUNTER_1_ISR TIMSK1 |= _BV(OCIE1A)
# define DISABLE_AUDIO_COUNTER_1_ISR TIMSK1 &= ~_BV(OCIE1A)
# define ENABLE_AUDIO_COUNTER_1_OUTPUT TCCR1A |= _BV(COM1A1);
# define DISABLE_AUDIO_COUNTER_1_OUTPUT TCCR1A &= ~(_BV(COM1A1) | _BV(COM1A0));
# define TIMER_1_PERIOD ICR1
# define TIMER_1_DUTY_CYCLE OCR1A
# define TIMER1_AUDIO_vect TIMER1_COMPA_vect
#endif
#if defined(B6_AUDIO)
2019-08-30 18:19:03 +00:00
# define BPIN_AUDIO
# define BPIN_SET_DIRECTION DDRB |= _BV(PORTB6);
# define INIT_AUDIO_COUNTER_1 TCCR1A = (0 << COM1B1) | (0 << COM1B0) | (1 << WGM11) | (0 << WGM10);
# define ENABLE_AUDIO_COUNTER_1_ISR TIMSK1 |= _BV(OCIE1B)
# define DISABLE_AUDIO_COUNTER_1_ISR TIMSK1 &= ~_BV(OCIE1B)
# define ENABLE_AUDIO_COUNTER_1_OUTPUT TCCR1A |= _BV(COM1B1);
# define DISABLE_AUDIO_COUNTER_1_OUTPUT TCCR1A &= ~(_BV(COM1B1) | _BV(COM1B0));
# define TIMER_1_PERIOD ICR1
# define TIMER_1_DUTY_CYCLE OCR1B
# define TIMER1_AUDIO_vect TIMER1_COMPB_vect
#endif
#if defined(B7_AUDIO)
2019-08-30 18:19:03 +00:00
# define BPIN_AUDIO
# define BPIN_SET_DIRECTION DDRB |= _BV(PORTB7);
# define INIT_AUDIO_COUNTER_1 TCCR1A = (0 << COM1C1) | (0 << COM1C0) | (1 << WGM11) | (0 << WGM10);
# define ENABLE_AUDIO_COUNTER_1_ISR TIMSK1 |= _BV(OCIE1C)
# define DISABLE_AUDIO_COUNTER_1_ISR TIMSK1 &= ~_BV(OCIE1C)
# define ENABLE_AUDIO_COUNTER_1_OUTPUT TCCR1A |= _BV(COM1C1);
# define DISABLE_AUDIO_COUNTER_1_OUTPUT TCCR1A &= ~(_BV(COM1C1) | _BV(COM1C0));
# define TIMER_1_PERIOD ICR1
# define TIMER_1_DUTY_CYCLE OCR1C
# define TIMER1_AUDIO_vect TIMER1_COMPC_vect
2017-06-27 02:24:30 +00:00
#endif
// -----------------------------------------------------------------------------
2016-01-20 05:06:52 +00:00
2019-08-30 18:19:03 +00:00
int voices = 0;
int voice_place = 0;
float frequency = 0;
2017-06-27 03:13:27 +00:00
float frequency_alt = 0;
2019-08-30 18:19:03 +00:00
int volume = 0;
long position = 0;
2016-01-20 05:06:52 +00:00
2016-04-20 05:08:17 +00:00
float frequencies[8] = {0, 0, 0, 0, 0, 0, 0, 0};
2019-08-30 18:19:03 +00:00
int volumes[8] = {0, 0, 0, 0, 0, 0, 0, 0};
bool sliding = false;
2016-01-20 05:06:52 +00:00
float place = 0;
2019-08-30 18:19:03 +00:00
uint8_t* sample;
2016-01-20 05:06:52 +00:00
uint16_t sample_length = 0;
2019-08-30 18:19:03 +00:00
bool playing_notes = false;
bool playing_note = false;
float note_frequency = 0;
2019-08-30 18:19:03 +00:00
float note_length = 0;
uint8_t note_tempo = TEMPO_DEFAULT;
float note_timbre = TIMBRE_DEFAULT;
uint16_t note_position = 0;
float (*notes_pointer)[][2];
2016-04-20 05:08:17 +00:00
uint16_t notes_count;
bool notes_repeat;
bool note_resting = false;
2016-04-17 01:31:40 +00:00
uint16_t current_note = 0;
2019-08-30 18:19:03 +00:00
uint8_t rest_counter = 0;
2016-01-20 05:06:52 +00:00
2016-04-20 05:08:17 +00:00
#ifdef VIBRATO_ENABLE
2019-08-30 18:19:03 +00:00
float vibrato_counter = 0;
2016-04-19 21:00:45 +00:00
float vibrato_strength = .5;
2019-08-30 18:19:03 +00:00
float vibrato_rate = 0.125;
2016-04-20 05:08:17 +00:00
#endif
2016-04-19 16:58:13 +00:00
float polyphony_rate = 0;
static bool audio_initialized = false;
2016-04-19 16:58:13 +00:00
2016-04-16 03:38:21 +00:00
audio_config_t audio_config;
2016-04-21 02:29:01 +00:00
uint16_t envelope_index = 0;
2019-08-30 18:19:03 +00:00
bool glissando = true;
2016-04-16 03:38:21 +00:00
#ifndef STARTUP_SONG
2019-08-30 18:19:03 +00:00
# define STARTUP_SONG SONG(STARTUP_SOUND)
#endif
2017-09-06 16:37:57 +00:00
#ifndef AUDIO_ON_SONG
2019-08-30 18:19:03 +00:00
# define AUDIO_ON_SONG SONG(AUDIO_ON_SOUND)
2017-09-06 16:37:57 +00:00
#endif
#ifndef AUDIO_OFF_SONG
2019-08-30 18:19:03 +00:00
# define AUDIO_OFF_SONG SONG(AUDIO_OFF_SOUND)
2017-09-06 16:37:57 +00:00
#endif
2019-08-30 18:19:03 +00:00
float startup_song[][2] = STARTUP_SONG;
float audio_on_song[][2] = AUDIO_ON_SONG;
2017-09-06 16:37:57 +00:00
float audio_off_song[][2] = AUDIO_OFF_SONG;
2019-08-30 18:19:03 +00:00
void audio_init() {
// Check EEPROM
2019-08-30 18:19:03 +00:00
if (!eeconfig_is_enabled()) {
eeconfig_init();
}
audio_config.raw = eeconfig_read_audio();
2017-09-06 16:37:57 +00:00
if (!audio_initialized) {
2019-08-30 18:19:03 +00:00
// Set audio ports as output
#ifdef CPIN_AUDIO
CPIN_SET_DIRECTION
DISABLE_AUDIO_COUNTER_3_ISR;
#endif
#ifdef BPIN_AUDIO
BPIN_SET_DIRECTION
DISABLE_AUDIO_COUNTER_1_ISR;
#endif
2019-08-30 18:19:03 +00:00
// TCCR3A / TCCR3B: Timer/Counter #3 Control Registers TCCR3A/TCCR3B, TCCR1A/TCCR1B
// Compare Output Mode (COM3An and COM1An) = 0b00 = Normal port operation
// OC3A -- PC6
// OC3B -- PC5
// OC3C -- PC4
// OC1A -- PB5
// OC1B -- PB6
// OC1C -- PB7
// Waveform Generation Mode (WGM3n) = 0b1110 = Fast PWM Mode 14. Period = ICR3, Duty Cycle OCR3A)
// OCR3A - PC6
// OCR3B - PC5
// OCR3C - PC4
// OCR1A - PB5
// OCR1B - PB6
// OCR1C - PB7
// Clock Select (CS3n) = 0b010 = Clock / 8
#ifdef CPIN_AUDIO
INIT_AUDIO_COUNTER_3
TCCR3B = (1 << WGM33) | (1 << WGM32) | (0 << CS32) | (1 << CS31) | (0 << CS30);
TIMER_3_PERIOD = (uint16_t)(((float)F_CPU) / (440 * CPU_PRESCALER));
TIMER_3_DUTY_CYCLE = (uint16_t)((((float)F_CPU) / (440 * CPU_PRESCALER)) * note_timbre);
#endif
#ifdef BPIN_AUDIO
INIT_AUDIO_COUNTER_1
TCCR1B = (1 << WGM13) | (1 << WGM12) | (0 << CS12) | (1 << CS11) | (0 << CS10);
TIMER_1_PERIOD = (uint16_t)(((float)F_CPU) / (440 * CPU_PRESCALER));
TIMER_1_DUTY_CYCLE = (uint16_t)((((float)F_CPU) / (440 * CPU_PRESCALER)) * note_timbre);
#endif
2017-09-06 16:37:57 +00:00
audio_initialized = true;
}
if (audio_config.enable) {
PLAY_SONG(startup_song);
}
}
2019-08-30 18:19:03 +00:00
void stop_all_notes() {
2017-03-02 20:28:12 +00:00
dprintf("audio stop all notes");
if (!audio_initialized) {
audio_init();
}
2016-01-20 05:06:52 +00:00
voices = 0;
2019-08-30 18:19:03 +00:00
#ifdef CPIN_AUDIO
DISABLE_AUDIO_COUNTER_3_ISR;
DISABLE_AUDIO_COUNTER_3_OUTPUT;
#endif
2017-06-27 02:24:30 +00:00
2019-08-30 18:19:03 +00:00
#ifdef BPIN_AUDIO
DISABLE_AUDIO_COUNTER_1_ISR;
DISABLE_AUDIO_COUNTER_1_OUTPUT;
#endif
playing_notes = false;
2019-08-30 18:19:03 +00:00
playing_note = false;
frequency = 0;
2017-06-27 03:13:27 +00:00
frequency_alt = 0;
2019-08-30 18:19:03 +00:00
volume = 0;
2016-01-20 05:06:52 +00:00
2019-08-30 18:19:03 +00:00
for (uint8_t i = 0; i < 8; i++) {
2016-01-20 05:06:52 +00:00
frequencies[i] = 0;
2019-08-30 18:19:03 +00:00
volumes[i] = 0;
2016-01-20 05:06:52 +00:00
}
}
2019-08-30 18:19:03 +00:00
void stop_note(float freq) {
2017-03-02 20:28:12 +00:00
dprintf("audio stop note freq=%d", (int)freq);
if (playing_note) {
if (!audio_initialized) {
audio_init();
}
for (int i = 7; i >= 0; i--) {
if (frequencies[i] == freq) {
frequencies[i] = 0;
2019-08-30 18:19:03 +00:00
volumes[i] = 0;
for (int j = i; (j < 7); j++) {
2019-08-30 18:19:03 +00:00
frequencies[j] = frequencies[j + 1];
frequencies[j + 1] = 0;
volumes[j] = volumes[j + 1];
volumes[j + 1] = 0;
}
2016-04-19 21:00:45 +00:00
break;
2016-01-20 05:06:52 +00:00
}
}
voices--;
2019-08-30 18:19:03 +00:00
if (voices < 0) voices = 0;
2016-04-19 01:01:48 +00:00
if (voice_place >= voices) {
voice_place = 0;
}
if (voices == 0) {
2019-08-30 18:19:03 +00:00
#ifdef CPIN_AUDIO
DISABLE_AUDIO_COUNTER_3_ISR;
DISABLE_AUDIO_COUNTER_3_OUTPUT;
#endif
#ifdef BPIN_AUDIO
DISABLE_AUDIO_COUNTER_1_ISR;
DISABLE_AUDIO_COUNTER_1_OUTPUT;
#endif
frequency = 0;
2017-06-27 03:13:27 +00:00
frequency_alt = 0;
2019-08-30 18:19:03 +00:00
volume = 0;
playing_note = false;
2016-01-20 05:06:52 +00:00
}
}
}
2016-04-20 05:08:17 +00:00
#ifdef VIBRATO_ENABLE
2019-08-30 18:19:03 +00:00
float mod(float a, int b) {
2016-04-19 16:58:13 +00:00
float r = fmod(a, b);
return r < 0 ? r + b : r;
}
2016-01-20 05:06:52 +00:00
2016-04-19 21:00:45 +00:00
float vibrato(float average_freq) {
2019-08-30 18:19:03 +00:00
# ifdef VIBRATO_STRENGTH_ENABLE
float vibrated_freq = average_freq * pow(vibrato_lut[(int)vibrato_counter], vibrato_strength);
# else
float vibrated_freq = average_freq * vibrato_lut[(int)vibrato_counter];
# endif
vibrato_counter = mod((vibrato_counter + vibrato_rate * (1.0 + 440.0 / average_freq)), VIBRATO_LUT_LENGTH);
2016-04-19 21:00:45 +00:00
return vibrated_freq;
}
2016-04-20 05:08:17 +00:00
#endif
#ifdef CPIN_AUDIO
2019-08-30 18:19:03 +00:00
ISR(TIMER3_AUDIO_vect) {
2017-06-27 18:35:08 +00:00
float freq;
2017-03-02 20:28:12 +00:00
if (playing_note) {
if (voices > 0) {
2019-08-30 18:19:03 +00:00
# ifdef BPIN_AUDIO
2017-06-27 18:35:08 +00:00
float freq_alt = 0;
2019-08-30 18:19:03 +00:00
if (voices > 1) {
if (polyphony_rate == 0) {
if (glissando) {
if (frequency_alt != 0 && frequency_alt < frequencies[voices - 2] && frequency_alt < frequencies[voices - 2] * pow(2, -440 / frequencies[voices - 2] / 12 / 2)) {
frequency_alt = frequency_alt * pow(2, 440 / frequency_alt / 12 / 2);
} else if (frequency_alt != 0 && frequency_alt > frequencies[voices - 2] && frequency_alt > frequencies[voices - 2] * pow(2, 440 / frequencies[voices - 2] / 12 / 2)) {
frequency_alt = frequency_alt * pow(2, -440 / frequency_alt / 12 / 2);
2017-06-27 03:13:27 +00:00
} else {
frequency_alt = frequencies[voices - 2];
}
2019-08-30 18:19:03 +00:00
} else {
frequency_alt = frequencies[voices - 2];
2017-06-27 03:13:27 +00:00
}
2019-08-30 18:19:03 +00:00
# ifdef VIBRATO_ENABLE
if (vibrato_strength > 0) {
freq_alt = vibrato(frequency_alt);
} else {
freq_alt = frequency_alt;
2017-06-27 03:13:27 +00:00
}
2019-08-30 18:19:03 +00:00
# else
freq_alt = frequency_alt;
# endif
}
2017-06-27 03:13:27 +00:00
2019-08-30 18:19:03 +00:00
if (envelope_index < 65535) {
envelope_index++;
}
2017-06-27 03:13:27 +00:00
2019-08-30 18:19:03 +00:00
freq_alt = voice_envelope(freq_alt);
2017-06-27 03:13:27 +00:00
2019-08-30 18:19:03 +00:00
if (freq_alt < 30.517578125) {
freq_alt = 30.52;
2017-06-27 03:13:27 +00:00
}
2019-08-30 18:19:03 +00:00
TIMER_1_PERIOD = (uint16_t)(((float)F_CPU) / (freq_alt * CPU_PRESCALER));
TIMER_1_DUTY_CYCLE = (uint16_t)((((float)F_CPU) / (freq_alt * CPU_PRESCALER)) * note_timbre);
}
# endif
2017-06-27 03:13:27 +00:00
2017-03-02 20:28:12 +00:00
if (polyphony_rate > 0) {
if (voices > 1) {
voice_place %= voices;
if (place++ > (frequencies[voice_place] / polyphony_rate / CPU_PRESCALER)) {
voice_place = (voice_place + 1) % voices;
2019-08-30 18:19:03 +00:00
place = 0.0;
2017-03-02 20:28:12 +00:00
}
}
2019-08-30 18:19:03 +00:00
# ifdef VIBRATO_ENABLE
if (vibrato_strength > 0) {
freq = vibrato(frequencies[voice_place]);
} else {
2017-03-02 20:28:12 +00:00
freq = frequencies[voice_place];
2019-08-30 18:19:03 +00:00
}
# else
freq = frequencies[voice_place];
# endif
2017-03-02 20:28:12 +00:00
} else {
if (glissando) {
2019-08-30 18:19:03 +00:00
if (frequency != 0 && frequency < frequencies[voices - 1] && frequency < frequencies[voices - 1] * pow(2, -440 / frequencies[voices - 1] / 12 / 2)) {
frequency = frequency * pow(2, 440 / frequency / 12 / 2);
} else if (frequency != 0 && frequency > frequencies[voices - 1] && frequency > frequencies[voices - 1] * pow(2, 440 / frequencies[voices - 1] / 12 / 2)) {
frequency = frequency * pow(2, -440 / frequency / 12 / 2);
2017-03-02 20:28:12 +00:00
} else {
frequency = frequencies[voices - 1];
}
} else {
frequency = frequencies[voices - 1];
}
2019-08-30 18:19:03 +00:00
# ifdef VIBRATO_ENABLE
if (vibrato_strength > 0) {
freq = vibrato(frequency);
} else {
2017-03-02 20:28:12 +00:00
freq = frequency;
2019-08-30 18:19:03 +00:00
}
# else
freq = frequency;
# endif
2017-03-02 20:28:12 +00:00
}
if (envelope_index < 65535) {
envelope_index++;
}
freq = voice_envelope(freq);
if (freq < 30.517578125) {
freq = 30.52;
}
2019-08-30 18:19:03 +00:00
TIMER_3_PERIOD = (uint16_t)(((float)F_CPU) / (freq * CPU_PRESCALER));
2017-03-02 20:28:12 +00:00
TIMER_3_DUTY_CYCLE = (uint16_t)((((float)F_CPU) / (freq * CPU_PRESCALER)) * note_timbre);
}
}
if (playing_notes) {
if (note_frequency > 0) {
2019-08-30 18:19:03 +00:00
# ifdef VIBRATO_ENABLE
if (vibrato_strength > 0) {
freq = vibrato(note_frequency);
} else {
freq = note_frequency;
}
# else
freq = note_frequency;
# endif
2017-03-02 20:28:12 +00:00
if (envelope_index < 65535) {
envelope_index++;
}
freq = voice_envelope(freq);
2019-08-30 18:19:03 +00:00
TIMER_3_PERIOD = (uint16_t)(((float)F_CPU) / (freq * CPU_PRESCALER));
2017-03-02 20:28:12 +00:00
TIMER_3_DUTY_CYCLE = (uint16_t)((((float)F_CPU) / (freq * CPU_PRESCALER)) * note_timbre);
} else {
2019-08-30 18:19:03 +00:00
TIMER_3_PERIOD = 0;
2017-03-02 20:28:12 +00:00
TIMER_3_DUTY_CYCLE = 0;
}
note_position++;
bool end_of_note = false;
if (TIMER_3_PERIOD > 0) {
2018-05-09 01:46:29 +00:00
if (!note_resting)
end_of_note = (note_position >= (note_length / TIMER_3_PERIOD * 0xFFFF - 1));
else
end_of_note = (note_position >= (note_length));
2017-03-02 20:28:12 +00:00
} else {
end_of_note = (note_position >= (note_length));
2017-03-02 20:28:12 +00:00
}
if (end_of_note) {
current_note++;
if (current_note >= notes_count) {
if (notes_repeat) {
current_note = 0;
} else {
DISABLE_AUDIO_COUNTER_3_ISR;
DISABLE_AUDIO_COUNTER_3_OUTPUT;
playing_notes = false;
return;
}
}
if (!note_resting) {
2017-03-02 20:28:12 +00:00
note_resting = true;
current_note--;
if ((*notes_pointer)[current_note][0] == (*notes_pointer)[current_note + 1][0]) {
note_frequency = 0;
2019-08-30 18:19:03 +00:00
note_length = 1;
} else {
note_frequency = (*notes_pointer)[current_note][0];
2019-08-30 18:19:03 +00:00
note_length = 1;
}
2017-03-02 20:28:12 +00:00
} else {
2019-08-30 18:19:03 +00:00
note_resting = false;
2017-03-02 20:28:12 +00:00
envelope_index = 0;
note_frequency = (*notes_pointer)[current_note][0];
2019-08-30 18:19:03 +00:00
note_length = ((*notes_pointer)[current_note][1] / 4) * (((float)note_tempo) / 100);
2017-03-02 20:28:12 +00:00
}
note_position = 0;
}
}
if (!audio_config.enable) {
playing_notes = false;
2019-08-30 18:19:03 +00:00
playing_note = false;
2017-03-02 20:28:12 +00:00
}
}
2017-06-27 02:24:30 +00:00
#endif
#ifdef BPIN_AUDIO
2019-08-30 18:19:03 +00:00
ISR(TIMER1_AUDIO_vect) {
# if defined(BPIN_AUDIO) && !defined(CPIN_AUDIO)
2017-06-27 03:13:27 +00:00
float freq = 0;
2017-06-27 02:24:30 +00:00
if (playing_note) {
if (voices > 0) {
if (polyphony_rate > 0) {
if (voices > 1) {
voice_place %= voices;
if (place++ > (frequencies[voice_place] / polyphony_rate / CPU_PRESCALER)) {
voice_place = (voice_place + 1) % voices;
2019-08-30 18:19:03 +00:00
place = 0.0;
2017-06-27 02:24:30 +00:00
}
}
2019-08-30 18:19:03 +00:00
# ifdef VIBRATO_ENABLE
if (vibrato_strength > 0) {
freq = vibrato(frequencies[voice_place]);
} else {
2017-06-27 02:24:30 +00:00
freq = frequencies[voice_place];
2019-08-30 18:19:03 +00:00
}
# else
freq = frequencies[voice_place];
# endif
2017-06-27 02:24:30 +00:00
} else {
if (glissando) {
2019-08-30 18:19:03 +00:00
if (frequency != 0 && frequency < frequencies[voices - 1] && frequency < frequencies[voices - 1] * pow(2, -440 / frequencies[voices - 1] / 12 / 2)) {
frequency = frequency * pow(2, 440 / frequency / 12 / 2);
} else if (frequency != 0 && frequency > frequencies[voices - 1] && frequency > frequencies[voices - 1] * pow(2, 440 / frequencies[voices - 1] / 12 / 2)) {
frequency = frequency * pow(2, -440 / frequency / 12 / 2);
2017-06-27 02:24:30 +00:00
} else {
frequency = frequencies[voices - 1];
}
} else {
frequency = frequencies[voices - 1];
}
2019-08-30 18:19:03 +00:00
# ifdef VIBRATO_ENABLE
if (vibrato_strength > 0) {
freq = vibrato(frequency);
} else {
2017-06-27 02:24:30 +00:00
freq = frequency;
2019-08-30 18:19:03 +00:00
}
# else
freq = frequency;
# endif
2017-06-27 02:24:30 +00:00
}
if (envelope_index < 65535) {
envelope_index++;
}
freq = voice_envelope(freq);
if (freq < 30.517578125) {
freq = 30.52;
}
2019-08-30 18:19:03 +00:00
TIMER_1_PERIOD = (uint16_t)(((float)F_CPU) / (freq * CPU_PRESCALER));
2017-06-27 02:24:30 +00:00
TIMER_1_DUTY_CYCLE = (uint16_t)((((float)F_CPU) / (freq * CPU_PRESCALER)) * note_timbre);
}
}
if (playing_notes) {
if (note_frequency > 0) {
2019-08-30 18:19:03 +00:00
# ifdef VIBRATO_ENABLE
if (vibrato_strength > 0) {
freq = vibrato(note_frequency);
} else {
freq = note_frequency;
}
# else
freq = note_frequency;
# endif
2017-06-27 02:24:30 +00:00
if (envelope_index < 65535) {
envelope_index++;
}
freq = voice_envelope(freq);
2019-08-30 18:19:03 +00:00
TIMER_1_PERIOD = (uint16_t)(((float)F_CPU) / (freq * CPU_PRESCALER));
2017-06-27 02:24:30 +00:00
TIMER_1_DUTY_CYCLE = (uint16_t)((((float)F_CPU) / (freq * CPU_PRESCALER)) * note_timbre);
} else {
2019-08-30 18:19:03 +00:00
TIMER_1_PERIOD = 0;
2017-06-27 02:24:30 +00:00
TIMER_1_DUTY_CYCLE = 0;
}
note_position++;
bool end_of_note = false;
if (TIMER_1_PERIOD > 0) {
2018-05-09 01:46:29 +00:00
if (!note_resting)
2017-07-21 17:18:36 +00:00
end_of_note = (note_position >= (note_length / TIMER_1_PERIOD * 0xFFFF - 1));
else
end_of_note = (note_position >= (note_length));
2017-06-27 02:24:30 +00:00
} else {
end_of_note = (note_position >= (note_length));
2017-06-27 02:24:30 +00:00
}
if (end_of_note) {
current_note++;
if (current_note >= notes_count) {
if (notes_repeat) {
current_note = 0;
} else {
DISABLE_AUDIO_COUNTER_1_ISR;
DISABLE_AUDIO_COUNTER_1_OUTPUT;
playing_notes = false;
return;
}
}
if (!note_resting) {
2017-06-27 02:24:30 +00:00
note_resting = true;
current_note--;
if ((*notes_pointer)[current_note][0] == (*notes_pointer)[current_note + 1][0]) {
note_frequency = 0;
2019-08-30 18:19:03 +00:00
note_length = 1;
} else {
note_frequency = (*notes_pointer)[current_note][0];
2019-08-30 18:19:03 +00:00
note_length = 1;
}
2017-06-27 02:24:30 +00:00
} else {
2019-08-30 18:19:03 +00:00
note_resting = false;
2017-06-27 02:24:30 +00:00
envelope_index = 0;
note_frequency = (*notes_pointer)[current_note][0];
2019-08-30 18:19:03 +00:00
note_length = ((*notes_pointer)[current_note][1] / 4) * (((float)note_tempo) / 100);
2017-06-27 02:24:30 +00:00
}
note_position = 0;
}
}
if (!audio_config.enable) {
playing_notes = false;
2019-08-30 18:19:03 +00:00
playing_note = false;
2017-06-27 02:24:30 +00:00
}
2019-08-30 18:19:03 +00:00
# endif
2017-06-27 03:13:27 +00:00
}
#endif
2016-04-21 02:29:01 +00:00
void play_note(float freq, int vol) {
2017-03-02 20:28:12 +00:00
dprintf("audio play note freq=%d vol=%d", (int)freq, vol);
if (!audio_initialized) {
audio_init();
2016-01-20 05:06:52 +00:00
}
2017-03-02 20:28:12 +00:00
if (audio_config.enable && voices < 8) {
2019-08-30 18:19:03 +00:00
#ifdef CPIN_AUDIO
DISABLE_AUDIO_COUNTER_3_ISR;
#endif
#ifdef BPIN_AUDIO
DISABLE_AUDIO_COUNTER_1_ISR;
#endif
2016-04-19 16:58:13 +00:00
2017-03-02 20:28:12 +00:00
// Cancel notes if notes are playing
2019-08-30 18:19:03 +00:00
if (playing_notes) stop_all_notes();
2016-04-21 04:37:45 +00:00
2017-03-02 20:28:12 +00:00
playing_note = true;
2016-01-20 05:06:52 +00:00
2017-03-02 20:28:12 +00:00
envelope_index = 0;
2017-03-02 20:28:12 +00:00
if (freq > 0) {
frequencies[voices] = freq;
2019-08-30 18:19:03 +00:00
volumes[voices] = vol;
2017-03-02 20:28:12 +00:00
voices++;
}
2019-08-30 18:19:03 +00:00
#ifdef CPIN_AUDIO
ENABLE_AUDIO_COUNTER_3_ISR;
ENABLE_AUDIO_COUNTER_3_OUTPUT;
#endif
#ifdef BPIN_AUDIO
# ifdef CPIN_AUDIO
if (voices > 1) {
2017-06-27 02:24:30 +00:00
ENABLE_AUDIO_COUNTER_1_ISR;
ENABLE_AUDIO_COUNTER_1_OUTPUT;
2019-08-30 18:19:03 +00:00
}
# else
ENABLE_AUDIO_COUNTER_1_ISR;
ENABLE_AUDIO_COUNTER_1_OUTPUT;
# endif
#endif
2017-03-02 20:28:12 +00:00
}
2016-01-20 05:06:52 +00:00
}
2019-08-30 18:19:03 +00:00
void play_notes(float (*np)[][2], uint16_t n_count, bool n_repeat) {
if (!audio_initialized) {
2016-04-20 05:08:17 +00:00
audio_init();
}
2017-03-02 20:28:12 +00:00
if (audio_config.enable) {
2019-08-30 18:19:03 +00:00
#ifdef CPIN_AUDIO
DISABLE_AUDIO_COUNTER_3_ISR;
#endif
#ifdef BPIN_AUDIO
DISABLE_AUDIO_COUNTER_1_ISR;
#endif
2017-03-02 20:28:12 +00:00
// Cancel note if a note is playing
2019-08-30 18:19:03 +00:00
if (playing_note) stop_all_notes();
2017-03-02 20:28:12 +00:00
playing_notes = true;
2017-03-02 20:28:12 +00:00
notes_pointer = np;
2019-08-30 18:19:03 +00:00
notes_count = n_count;
notes_repeat = n_repeat;
2019-08-30 18:19:03 +00:00
place = 0;
2017-03-02 20:28:12 +00:00
current_note = 0;
note_frequency = (*notes_pointer)[current_note][0];
2019-08-30 18:19:03 +00:00
note_length = ((*notes_pointer)[current_note][1] / 4) * (((float)note_tempo) / 100);
note_position = 0;
2019-08-30 18:19:03 +00:00
#ifdef CPIN_AUDIO
ENABLE_AUDIO_COUNTER_3_ISR;
ENABLE_AUDIO_COUNTER_3_OUTPUT;
#endif
#ifdef BPIN_AUDIO
# ifndef CPIN_AUDIO
ENABLE_AUDIO_COUNTER_1_ISR;
ENABLE_AUDIO_COUNTER_1_OUTPUT;
# endif
#endif
2017-03-02 20:28:12 +00:00
}
2016-04-20 05:08:17 +00:00
}
2019-08-30 18:19:03 +00:00
bool is_playing_notes(void) { return playing_notes; }
2019-08-30 18:19:03 +00:00
bool is_audio_on(void) { return (audio_config.enable != 0); }
2016-04-20 05:08:17 +00:00
void audio_toggle(void) {
audio_config.enable ^= 1;
eeconfig_update_audio(audio_config.raw);
2019-08-30 18:19:03 +00:00
if (audio_config.enable) audio_on_user();
}
2016-04-20 05:08:17 +00:00
void audio_on(void) {
audio_config.enable = 1;
eeconfig_update_audio(audio_config.raw);
audio_on_user();
2017-09-06 16:37:57 +00:00
PLAY_SONG(audio_on_song);
}
2016-04-20 05:08:17 +00:00
void audio_off(void) {
2017-09-06 16:37:57 +00:00
PLAY_SONG(audio_off_song);
wait_ms(100);
stop_all_notes();
audio_config.enable = 0;
eeconfig_update_audio(audio_config.raw);
}
2016-01-20 05:06:52 +00:00
#ifdef VIBRATO_ENABLE
2016-01-20 05:06:52 +00:00
// Vibrato rate functions
2019-08-30 18:19:03 +00:00
void set_vibrato_rate(float rate) { vibrato_rate = rate; }
2016-01-20 05:06:52 +00:00
2019-08-30 18:19:03 +00:00
void increase_vibrato_rate(float change) { vibrato_rate *= change; }
2016-04-16 03:38:21 +00:00
2019-08-30 18:19:03 +00:00
void decrease_vibrato_rate(float change) { vibrato_rate /= change; }
2016-01-20 05:06:52 +00:00
2019-08-30 18:19:03 +00:00
# ifdef VIBRATO_STRENGTH_ENABLE
2019-08-30 18:19:03 +00:00
void set_vibrato_strength(float strength) { vibrato_strength = strength; }
2019-08-30 18:19:03 +00:00
void increase_vibrato_strength(float change) { vibrato_strength *= change; }
2019-08-30 18:19:03 +00:00
void decrease_vibrato_strength(float change) { vibrato_strength /= change; }
2019-08-30 18:19:03 +00:00
# endif /* VIBRATO_STRENGTH_ENABLE */
#endif /* VIBRATO_ENABLE */
2016-01-20 05:06:52 +00:00
// Polyphony functions
2019-08-30 18:19:03 +00:00
void set_polyphony_rate(float rate) { polyphony_rate = rate; }
2019-08-30 18:19:03 +00:00
void enable_polyphony() { polyphony_rate = 5; }
2019-08-30 18:19:03 +00:00
void disable_polyphony() { polyphony_rate = 0; }
2019-08-30 18:19:03 +00:00
void increase_polyphony_rate(float change) { polyphony_rate *= change; }
2019-08-30 18:19:03 +00:00
void decrease_polyphony_rate(float change) { polyphony_rate /= change; }
// Timbre function
2019-08-30 18:19:03 +00:00
void set_timbre(float timbre) { note_timbre = timbre; }
// Tempo functions
2019-08-30 18:19:03 +00:00
void set_tempo(uint8_t tempo) { note_tempo = tempo; }
2019-08-30 18:19:03 +00:00
void decrease_tempo(uint8_t tempo_change) { note_tempo += tempo_change; }
void increase_tempo(uint8_t tempo_change) {
if (note_tempo - tempo_change < 10) {
note_tempo = 10;
} else {
note_tempo -= tempo_change;
2016-04-20 05:08:17 +00:00
}
2016-04-17 07:52:38 +00:00
}