diff options
author | zvecr <git@zvecr.com> | 2018-12-14 22:25:32 +0000 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-12-14 14:25:32 -0800 |
commit | bb5262de0790ed3f4f91de20fad6e13fc0ffddc5 (patch) | |
tree | 48a73db53aabbb2b6b4e8b4c055cd292a6f7966d /keyboards/fourier/fourier.h | |
parent | cb149650efd07cbdc3cacb1fe2eb58f17eee5965 (diff) |
Keyboard: Refactor fourier to use split common code (#4582)
* Refactor fourier to use split common code
* Refactor fourier to use split common code - fix handedness when not using EE_HANDS or MASTER_LEFT
* add SOFT_SERIAL_PIN config
Diffstat (limited to 'keyboards/fourier/fourier.h')
-rw-r--r-- | keyboards/fourier/fourier.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/keyboards/fourier/fourier.h b/keyboards/fourier/fourier.h index 4e9797b35b..1b4585c821 100644 --- a/keyboards/fourier/fourier.h +++ b/keyboards/fourier/fourier.h @@ -1,12 +1,11 @@ -#ifndef FOURIER_H -#define FOURIER_H - -#include "quantum.h" +#pragma once #ifdef KEYBOARD_fourier_rev1 #include "rev1.h" #endif +#include "quantum.h" + // Used to create a keymap using only KC_ prefixed keys #define LAYOUT_kc( \ LA1, LA2, LA3, LA4, LA5, LA6, RA1, RA2, RA3, RA4, RA5, RA6, RA7, \ @@ -20,4 +19,3 @@ KC_##LC1, KC_##LC2, KC_##LC3, KC_##LC4, KC_##LC5, KC_##LC6, KC_##RC1, KC_##RC3, KC_##RC4, KC_##RC5, KC_##RC6, KC_##RC7, \ KC_##LD1, KC_##LD2, KC_##LD3, KC_##LD4, KC_##LD5, KC_##RD1, KC_##RD4, KC_##RD5, KC_##RD6, KC_##RD7 \ ) -#endif |