172 lines
3.9 KiB
C
Raw Normal View History

2016-01-11 16:53:33 -05:00
#include <stdio.h>
#include <string.h>
2015-08-16 17:52:03 -04:00
#include <math.h>
#include <avr/pgmspace.h>
#include <avr/interrupt.h>
#include <avr/io.h>
2016-01-11 16:53:33 -05:00
#include "beeps.h"
#include "keymap_common.h"
#include "wave.h"
2015-08-16 17:52:03 -04:00
#define PI 3.14159265
2016-01-11 16:53:33 -05:00
#define SAMPLE_DIVIDER 70
#define SAMPLE_RATE (2000000.0/SAMPLE_DIVIDER/256)
// Resistor value of 1/ (2 * PI * 10nF * (2000000 hertz / SAMPLE_DIVIDER / 10)) for 10nF cap
2015-08-16 17:52:03 -04:00
void delay_us(int count) {
while(count--) {
_delay_us(1);
}
}
2015-08-29 11:54:38 -04:00
int voices = 0;
double frequency = 0;
int volume = 0;
2016-01-11 16:53:33 -05:00
long position = 0;
2015-08-29 11:54:38 -04:00
double frequencies[8] = {0, 0, 0, 0, 0, 0, 0, 0};
int volumes[8] = {0, 0, 0, 0, 0, 0, 0, 0};
2015-08-31 12:39:53 -04:00
bool sliding = false;
#define RANGE 1000
volatile int i=0; //elements of the wave
2015-08-16 17:52:03 -04:00
2015-08-29 11:54:38 -04:00
void stop_all_notes() {
voices = 0;
2016-01-11 17:52:35 -05:00
TIMSK3 &= ~_BV(OCIE3A);
2015-08-29 11:54:38 -04:00
frequency = 0;
2015-08-31 12:39:53 -04:00
volume = 0;
2015-08-16 17:52:03 -04:00
2015-08-29 11:54:38 -04:00
for (int i = 0; i < 8; i++) {
frequencies[i] = 0;
volumes[i] = 0;
2015-08-16 17:52:03 -04:00
}
}
2015-08-29 11:54:38 -04:00
void stop_note(double freq) {
2016-01-11 16:53:33 -05:00
freq = freq / SAMPLE_RATE;
2015-08-29 11:54:38 -04:00
for (int i = 7; i >= 0; i--) {
if (frequencies[i] == freq) {
frequencies[i] = 0;
volumes[i] = 0;
for (int j = i; (j < 7); j++) {
frequencies[j] = frequencies[j+1];
frequencies[j+1] = 0;
volumes[j] = volumes[j+1];
volumes[j+1] = 0;
}
2015-08-16 17:52:03 -04:00
}
}
2015-08-29 11:54:38 -04:00
voices--;
2015-08-31 12:39:53 -04:00
if (voices < 0)
voices = 0;
2015-08-29 11:54:38 -04:00
if (voices == 0) {
2016-01-11 17:52:35 -05:00
TIMSK3 &= ~_BV(OCIE3A);
2015-08-29 11:54:38 -04:00
frequency = 0;
2015-08-31 12:39:53 -04:00
volume = 0;
2015-08-29 11:54:38 -04:00
} else {
double freq = frequencies[voices - 1];
int vol = volumes[voices - 1];
2016-01-11 16:53:33 -05:00
double starting_f = frequency;
2015-08-29 11:54:38 -04:00
if (frequency < freq) {
2015-08-31 12:39:53 -04:00
sliding = true;
2016-01-11 16:53:33 -05:00
for (double f = starting_f; f <= freq; f += ((freq - starting_f) / 500.0)) {
frequency = f;
2015-08-29 11:54:38 -04:00
}
2015-08-31 12:39:53 -04:00
sliding = false;
2015-08-29 11:54:38 -04:00
} else if (frequency > freq) {
2015-08-31 12:39:53 -04:00
sliding = true;
2016-01-11 16:53:33 -05:00
for (double f = starting_f; f >= freq; f -= ((starting_f - freq) / 500.0)) {
frequency = f;
2015-08-29 11:54:38 -04:00
}
2015-08-31 12:39:53 -04:00
sliding = false;
2015-08-29 11:54:38 -04:00
}
frequency = freq;
volume = vol;
2015-08-16 17:52:03 -04:00
}
}
2015-08-31 12:39:53 -04:00
void init_notes() {
2016-01-11 16:53:33 -05:00
PLLFRQ = _BV(PDIV2);
PLLCSR = _BV(PLLE);
while(!(PLLCSR & _BV(PLOCK)));
PLLFRQ |= _BV(PLLTM0); /* PCK 48MHz */
/* Init a fast PWM on Timer4 */
TCCR4A = _BV(COM4A0) | _BV(PWM4A); /* Clear OC4A on Compare Match */
TCCR4B = _BV(CS40); /* No prescaling => f = PCK/256 = 187500Hz */
OCR4A = 0;
2015-08-31 12:39:53 -04:00
2016-01-11 16:53:33 -05:00
/* Enable the OC4A output */
DDRC |= _BV(PORTC6);
2015-08-31 12:39:53 -04:00
}
2016-01-11 16:53:33 -05:00
int max = 0xFF;
float sum = 0;
int value = 128;
float place = 0;
2015-08-31 12:39:53 -04:00
2016-01-11 17:52:35 -05:00
ISR(TIMER3_COMPA_vect) {
2016-01-11 16:53:33 -05:00
// SINE
OCR4A = pgm_read_byte(&sinewave[(uint16_t)place]);
// SQUARE
// if (((int)place) >= 1024){
// OCR4A = 0xFF;
// } else {
// OCR4A = 0x00;
// }
// SAWTOOTH
// OCR4A = (int)place / 4;
// TRIANGLE
// if (((int)place) >= 1024) {
// OCR4A = (int)place / 2;
// } else {
// OCR4A = 2048 - (int)place / 2;
// }
place += frequency;
if (place >= SINE_LENGTH)
place -= SINE_LENGTH;
}
2015-08-31 12:39:53 -04:00
2015-08-29 11:54:38 -04:00
void play_note(double freq, int vol) {
2015-08-16 17:52:03 -04:00
2016-01-11 16:53:33 -05:00
freq = freq / SAMPLE_RATE;
2015-08-29 11:54:38 -04:00
if (freq > 0) {
if (frequency != 0) {
2016-01-11 16:53:33 -05:00
double starting_f = frequency;
2015-08-29 11:54:38 -04:00
if (frequency < freq) {
2016-01-11 16:53:33 -05:00
for (double f = starting_f; f <= freq; f += ((freq - starting_f) / 500.0)) {
frequency = f;
2015-08-29 11:54:38 -04:00
}
} else if (frequency > freq) {
2016-01-11 16:53:33 -05:00
for (double f = starting_f; f >= freq; f -= ((starting_f - freq) / 500.0)) {
frequency = f;
2015-08-29 11:54:38 -04:00
}
}
}
frequency = freq;
volume = vol;
2015-08-16 17:52:03 -04:00
2015-08-29 11:54:38 -04:00
frequencies[voices] = frequency;
volumes[voices] = volume;
voices++;
}
2016-01-11 17:52:35 -05:00
TIMSK3 &= ~_BV(OCIE3A);
2016-01-11 16:53:33 -05:00
2016-01-11 17:52:35 -05:00
TCCR3A = 0x0;
TCCR3B = _BV(CS31) | _BV(WGM32);
OCR3A = SAMPLE_DIVIDER - 1;
2016-01-11 16:53:33 -05:00
2016-01-11 17:52:35 -05:00
TIMSK3 |= _BV(OCIE3A);
2015-08-16 17:52:03 -04:00
2016-01-11 17:52:35 -05:00
}