summaryrefslogtreecommitdiffstats
path: root/keyboards/sol/rev1/split_util.h
diff options
context:
space:
mode:
authorLegonut <legonut3@gmail.com>2018-12-05 03:15:52 +0100
committerDrashna Jaelre <drashna@live.com>2018-12-05 03:15:52 +0100
commit8a330b33ff41ffc1ec3f8fa39722e93115ea3f0f (patch)
tree3ef91766a6063422fb7cd884c377959fa6b2ab39 /keyboards/sol/rev1/split_util.h
parent6d0dc910d92bc381d3cce9ea712aa47ae40ddf15 (diff)
downloadqmk_firmware-8a330b33ff41ffc1ec3f8fa39722e93115ea3f0f.tar.gz
qmk_firmware-8a330b33ff41ffc1ec3f8fa39722e93115ea3f0f.tar.xz
Keyboard: Add new keyboard "Sol" from RGBKB (#4497)
* Add final RGBKB Sol firmware * Apply suggestions from code review Apply most of the changes noroadsleft has suggested Co-Authored-By: Legonut <legonut3@gmail.com> * Cleanup readme * Cleanup keymaps per @noroadslefts suggestions * Remove eeproms, use set_single_persistent_default_layer * Suggestions from @noroadsleft and @drashna some small cleanup * Change RGB_SMOD to RGB_RMOD * fix RGB_SMOD * Apply suggestions from code review Remove redundant lines Co-Authored-By: Legonut <legonut3@gmail.com>
Diffstat (limited to 'keyboards/sol/rev1/split_util.h')
-rw-r--r--keyboards/sol/rev1/split_util.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/keyboards/sol/rev1/split_util.h b/keyboards/sol/rev1/split_util.h
new file mode 100644
index 000000000..59b362415
--- /dev/null
+++ b/keyboards/sol/rev1/split_util.h
@@ -0,0 +1,17 @@
+#ifndef SPLIT_KEYBOARD_UTIL_H
+#define SPLIT_KEYBOARD_UTIL_H
+
+#include <stdbool.h>
+#include "eeconfig.h"
+
+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 matrix_master_OLED_init (void);
+
+#endif