diff options
Diffstat (limited to 'quantum/audio/luts.h')
-rw-r--r-- | quantum/audio/luts.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/quantum/audio/luts.h b/quantum/audio/luts.h index 155e34e88..a377a6c87 100644 --- a/quantum/audio/luts.h +++ b/quantum/audio/luts.h | |||
@@ -14,9 +14,14 @@ | |||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include <avr/io.h> | 17 | #if defined(__AVR__) |
18 | #include <avr/interrupt.h> | 18 | #include <avr/io.h> |
19 | #include <avr/pgmspace.h> | 19 | #include <avr/interrupt.h> |
20 | #include <avr/pgmspace.h> | ||
21 | #else | ||
22 | #include "ch.h" | ||
23 | #include "hal.h" | ||
24 | #endif | ||
20 | 25 | ||
21 | #ifndef LUTS_H | 26 | #ifndef LUTS_H |
22 | #define LUTS_H | 27 | #define LUTS_H |