1
0
Fork 0

Backport ChibiOS Audio changes from ZSA (#11687)

This commit is contained in:
Drashna Jael're 2021-01-27 09:33:52 -08:00 committed by GitHub
parent 30b46fad57
commit bab9849a8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 8 deletions

View file

@ -17,7 +17,9 @@
#pragma once
// Tempo Placeholder
#define TEMPO_DEFAULT 100
#ifndef TEMPO_DEFAULT
# define TEMPO_DEFAULT 100
#endif
#define SONG(notes...) \
{ notes }
@ -60,8 +62,9 @@
#define TIMBRE_25 0.250f
#define TIMBRE_50 0.500f
#define TIMBRE_75 0.750f
#define TIMBRE_DEFAULT TIMBRE_50
#ifndef TIMBRE_DEFAULT
# define TIMBRE_DEFAULT TIMBRE_50
#endif
// Notes - # = Octave
#ifdef __arm__