aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/fourier/rev1
diff options
context:
space:
mode:
authorzvecr <git@zvecr.com>2018-12-14 22:25:32 +0000
committerDrashna Jaelre <drashna@live.com>2018-12-14 14:25:32 -0800
commitbb5262de0790ed3f4f91de20fad6e13fc0ffddc5 (patch)
tree48a73db53aabbb2b6b4e8b4c055cd292a6f7966d /keyboards/fourier/rev1
parentcb149650efd07cbdc3cacb1fe2eb58f17eee5965 (diff)
downloadfirmware-bb5262de0790ed3f4f91de20fad6e13fc0ffddc5.tar.gz
firmware-bb5262de0790ed3f4f91de20fad6e13fc0ffddc5.tar.bz2
firmware-bb5262de0790ed3f4f91de20fad6e13fc0ffddc5.zip
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/rev1')
-rw-r--r--keyboards/fourier/rev1/config.h14
-rw-r--r--keyboards/fourier/rev1/rev1.c2
-rw-r--r--keyboards/fourier/rev1/rev1.h17
3 files changed, 8 insertions, 25 deletions
diff --git a/keyboards/fourier/rev1/config.h b/keyboards/fourier/rev1/config.h
index 3bd67228c..d9913d7de 100644
--- a/keyboards/fourier/rev1/config.h
+++ b/keyboards/fourier/rev1/config.h
@@ -16,10 +16,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef REV1_CONFIG_H
-#define REV1_CONFIG_H
-
-#include "../config.h"
+#pragma once
/* USB Device descriptor parameter */
#define VENDOR_ID 0xCB10
@@ -38,6 +35,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define MATRIX_ROW_PINS { F4, D7, E6, B4 }
#define MATRIX_COL_PINS { F5, F6, F7, B1, B3, B2, B6 }
+/* Split Defines */
+#define SPLIT_HAND_PIN D2
+/* serial.c configuration for split keyboard */
+#define SOFT_SERIAL_PIN D0
+
/* define if matrix has ghost */
//#define MATRIX_HAS_GHOST
@@ -56,7 +58,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
/* ws2812 RGB LED */
#define RGB_DI_PIN D3
-
#define RGBLIGHT_ANIMATIONS
#define RGBLED_NUM 14 // Number of LEDs
@@ -77,6 +78,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
//#define NO_ACTION_ONESHOT
//#define NO_ACTION_MACRO
//#define NO_ACTION_FUNCTION
-
-
-#endif
diff --git a/keyboards/fourier/rev1/rev1.c b/keyboards/fourier/rev1/rev1.c
index 61d7139d6..1e662e7b8 100644
--- a/keyboards/fourier/rev1/rev1.c
+++ b/keyboards/fourier/rev1/rev1.c
@@ -1,7 +1,5 @@
#include "fourier.h"
-
void matrix_init_kb(void) {
matrix_init_user();
};
-
diff --git a/keyboards/fourier/rev1/rev1.h b/keyboards/fourier/rev1/rev1.h
index 9ef9b9233..ac889462b 100644
--- a/keyboards/fourier/rev1/rev1.h
+++ b/keyboards/fourier/rev1/rev1.h
@@ -1,19 +1,8 @@
-#ifndef REV1_H
-#define REV1_H
-
-#include "../fourier.h"
+#pragma once
+#include "fourier.h"
#include "quantum.h"
-
-#ifdef USE_I2C
-#include <stddef.h>
-#ifdef __AVR__
- #include <avr/io.h>
- #include <avr/interrupt.h>
-#endif
-#endif
-
#define LAYOUT( \
LA1, LA2, LA3, LA4, LA5, LA6, RA1, RA2, RA3, RA4, RA5, RA6, RA7, \
LB1, LB2, LB3, LB4, LB5, LB6, RB1, RB2, RB3, RB4, RB5, RB7, \
@@ -30,5 +19,3 @@
{ RC1, KC_NO, RC3, RC4, RC5, RC6, RC7}, \
{ RD1, KC_NO, KC_NO, RD4, RD5, RD6, RD7} \
}
-
-#endif