summaryrefslogtreecommitdiffstats
path: root/keyboards/ergotravel/split_util.h
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2018-10-15 08:31:26 -0700
committerJack Humbert <jack.humb@gmail.com>2018-10-15 12:21:28 -0400
commitd7dea0e6d9a6e9a8ed7e760a996aac8f89560a5b (patch)
treee8949032e4dab040423fc9b773f1e6eb1a39ce29 /keyboards/ergotravel/split_util.h
parent533f6848875feb10d3944c1f41ff51060bcdabf2 (diff)
Fix ErgoTravel Board
It was not properly including the "config_common" files, and was causing it to break on the configurator. Additionally, updated this to use the split common code.
Diffstat (limited to 'keyboards/ergotravel/split_util.h')
-rw-r--r--keyboards/ergotravel/split_util.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/keyboards/ergotravel/split_util.h b/keyboards/ergotravel/split_util.h
deleted file mode 100644
index 595a0659e1..0000000000
--- a/keyboards/ergotravel/split_util.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef SPLIT_KEYBOARD_UTIL_H
-#define SPLIT_KEYBOARD_UTIL_H
-
-#include <stdbool.h>
-#include "eeconfig.h"
-
-#define SLAVE_I2C_ADDRESS 0x32
-
-extern volatile bool isLeftHand;
-
-// slave version of matix scan, defined in matrix.c
-void matrix_slave_scan(void);
-
-void split_keyboard_setup(void);
-bool has_usb(void);
-void keyboard_slave_loop(void);
-
-void matrix_master_OLED_init (void);
-
-#endif