aboutsummaryrefslogtreecommitdiff
path: root/keyboards/fourier/fourier.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/fourier/fourier.h')
-rw-r--r--keyboards/fourier/fourier.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/keyboards/fourier/fourier.h b/keyboards/fourier/fourier.h
index 4e9797b35..1b4585c82 100644
--- a/keyboards/fourier/fourier.h
+++ b/keyboards/fourier/fourier.h
@@ -1,12 +1,11 @@
1#ifndef FOURIER_H 1#pragma once
2#define FOURIER_H
3
4#include "quantum.h"
5 2
6#ifdef KEYBOARD_fourier_rev1 3#ifdef KEYBOARD_fourier_rev1
7 #include "rev1.h" 4 #include "rev1.h"
8#endif 5#endif
9 6
7#include "quantum.h"
8
10// Used to create a keymap using only KC_ prefixed keys 9// Used to create a keymap using only KC_ prefixed keys
11#define LAYOUT_kc( \ 10#define LAYOUT_kc( \
12 LA1, LA2, LA3, LA4, LA5, LA6, RA1, RA2, RA3, RA4, RA5, RA6, RA7, \ 11 LA1, LA2, LA3, LA4, LA5, LA6, RA1, RA2, RA3, RA4, RA5, RA6, RA7, \
@@ -20,4 +19,3 @@
20 KC_##LC1, KC_##LC2, KC_##LC3, KC_##LC4, KC_##LC5, KC_##LC6, KC_##RC1, KC_##RC3, KC_##RC4, KC_##RC5, KC_##RC6, KC_##RC7, \ 19 KC_##LC1, KC_##LC2, KC_##LC3, KC_##LC4, KC_##LC5, KC_##LC6, KC_##RC1, KC_##RC3, KC_##RC4, KC_##RC5, KC_##RC6, KC_##RC7, \
21 KC_##LD1, KC_##LD2, KC_##LD3, KC_##LD4, KC_##LD5, KC_##RD1, KC_##RD4, KC_##RD5, KC_##RD6, KC_##RD7 \ 20 KC_##LD1, KC_##LD2, KC_##LD3, KC_##LD4, KC_##LD5, KC_##RD1, KC_##RD4, KC_##RD5, KC_##RD6, KC_##RD7 \
22 ) 21 )
23#endif