-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
33 lines (29 loc) · 841 Bytes
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// Author: Santiago Romaní Also
//
typedef struct {
short freq; // frecuencia de la nota (Hz)
short time; // tiempo de la nota (centésimas de segundo)
short vol; // volumen de la nota (0..127)
} info_note;
info_note musica[MAX_NOTAS];
short nota_actual; // índice de la nota actual
short tiempo_restante; // cuenta el tiempo restante de la nota actual
short cambio_nota = 0; // indica si ha habido cambio de nota
int main()
{
inicializaciones();
nota_actual = 0;
tiempo_restante = musica[0].time;
activar_nota(0, musica[0].freq, musica[0].vol);
do
{
tareas_independientes();
swiWaitForVBlank();
if (cambio_nota == 1)
{
printf("Nota actual = %d\n", nota_actual);
cambio_nota = 0;
}
} while (1);
}