aboutsummaryrefslogtreecommitdiff
path: root/quantum/audio/luts.h
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2019-08-30 11:19:03 -0700
committerskullydazed <skullydazed@users.noreply.github.com>2019-08-30 15:01:52 -0700
commitb624f32f944acdc59dcb130674c09090c5c404cb (patch)
treebc13adbba137d122d9a2c2fb2fafcbb08ac10e25 /quantum/audio/luts.h
parent61af76a10d00aba185b8338604171de490a13e3b (diff)
downloadqmk_firmware-b624f32f944acdc59dcb130674c09090c5c404cb.tar.gz
qmk_firmware-b624f32f944acdc59dcb130674c09090c5c404cb.zip
clang-format changes
Diffstat (limited to 'quantum/audio/luts.h')
-rw-r--r--quantum/audio/luts.h18
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
33extern const float vibrato_lut[VIBRATO_LUT_LENGTH]; 33extern const float vibrato_lut[VIBRATO_LUT_LENGTH];
34extern const uint16_t frequency_lut[FREQUENCY_LUT_LENGTH]; 34extern const uint16_t frequency_lut[FREQUENCY_LUT_LENGTH];
35 35
36#endif /* LUTS_H */ 36#endif /* LUTS_H */