pentabug/firmware/lib/music.c

63 lines
1.2 KiB
C
Raw Normal View History

#include <pentabug/music.h>
#include <avr/io.h>
2013-08-27 00:22:38 +02:00
#include <pentabug/timer.h>
#include <pentabug/lifecycle.h>
2013-08-29 23:25:46 +02:00
#include <pentabug/hal.h>
static void tune(void) {
buzzer_inv();
}
void set_note(uint16_t note, uint8_t octave) {
if(note != NOTE_PAUSE) {
// bring buzzer to a state where inverting it creates sound
buzzer_up();
// start timer with doubled frequency of tone we want to play
start_timer(PRESCALE_8, note >> octave, tune);
} else {
// do nothing when paused
stop_note();
}
}
void stop_note(void) {
// turn buzzer off to save energy
buzzer_off();
// we do not need the timer anymore
stop_timer();
}
2013-08-27 00:22:38 +02:00
void play_melody(uint16_t notes[], size_t len, uint8_t octave, int speed) {
2013-09-04 00:57:13 +02:00
uint8_t length = 1;
uint8_t pause = speed / 20;
2013-08-27 00:22:38 +02:00
size_t i;
for(i = 0; i < len; ++i) {
if(notes[i] == MLDY_PAUSE) {
// user defined pause
2013-08-27 00:22:38 +02:00
++i;
2013-09-04 00:57:13 +02:00
wait_ms(speed * notes[i]);
2013-08-29 23:09:01 +02:00
} else if(notes[i] == MLDY_LENGTH) {
// sets length for next tone
2013-08-29 23:09:01 +02:00
++i;
length = notes[i];
2013-08-27 00:22:38 +02:00
} else {
// play note
2013-08-27 00:22:38 +02:00
set_note(notes[i], octave);
test_stop_app();
2013-09-04 00:57:13 +02:00
wait_ms(speed * length - pause);
2013-08-27 00:22:38 +02:00
2013-09-04 00:57:13 +02:00
// pause
2013-08-27 00:22:38 +02:00
stop_note();
test_stop_app();
2013-08-29 23:09:01 +02:00
wait_ms(pause);
// reset length for next note
2013-09-04 00:57:13 +02:00
length = 1;
2013-08-27 00:22:38 +02:00
}
}
}