diff options
Diffstat (limited to 'quantum/audio/luts.h')
| -rw-r--r-- | quantum/audio/luts.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/quantum/audio/luts.h b/quantum/audio/luts.h index a377a6c87..117d74cd0 100644 --- a/quantum/audio/luts.h +++ b/quantum/audio/luts.h | |||
| @@ -15,22 +15,22 @@ | |||
| 15 | */ | 15 | */ |
| 16 | 16 | ||
| 17 | #if defined(__AVR__) | 17 | #if defined(__AVR__) |
| 18 | #include <avr/io.h> | 18 | # include <avr/io.h> |
| 19 | #include <avr/interrupt.h> | 19 | # include <avr/interrupt.h> |
| 20 | #include <avr/pgmspace.h> | 20 | # include <avr/pgmspace.h> |
| 21 | #else | 21 | #else |
| 22 | #include "ch.h" | 22 | # include "ch.h" |
| 23 | #include "hal.h" | 23 | # include "hal.h" |
| 24 | #endif | 24 | #endif |
| 25 | 25 | ||
| 26 | #ifndef LUTS_H | 26 | #ifndef LUTS_H |
| 27 | #define LUTS_H | 27 | # define LUTS_H |
| 28 | 28 | ||
| 29 | #define VIBRATO_LUT_LENGTH 20 | 29 | # define VIBRATO_LUT_LENGTH 20 |
| 30 | 30 | ||
| 31 | #define FREQUENCY_LUT_LENGTH 349 | 31 | # define FREQUENCY_LUT_LENGTH 349 |
| 32 | 32 | ||
| 33 | extern const float vibrato_lut[VIBRATO_LUT_LENGTH]; | 33 | extern const float vibrato_lut[VIBRATO_LUT_LENGTH]; |
| 34 | extern const uint16_t frequency_lut[FREQUENCY_LUT_LENGTH]; | 34 | extern const uint16_t frequency_lut[FREQUENCY_LUT_LENGTH]; |
| 35 | 35 | ||
| 36 | #endif /* LUTS_H */ | 36 | #endif /* LUTS_H */ |
