aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/gergo/keymaps/abstractkb/rules.mk
diff options
context:
space:
mode:
authorAbstractKB <49011872+AbstractKB@users.noreply.github.com>2020-05-18 06:29:01 -0400
committerGitHub <noreply@github.com>2020-05-18 03:29:01 -0700
commite55d55edc08d5a5ca557e3ff442ca47ccd731067 (patch)
tree9d0618f8a9335efcbd4217ddc2629dd840c39d01 /keyboards/gergo/keymaps/abstractkb/rules.mk
parentad014c2539fefec0313fc936f41e50f841e42501 (diff)
downloadfirmware-e55d55edc08d5a5ca557e3ff442ca47ccd731067.tar.gz
firmware-e55d55edc08d5a5ca557e3ff442ca47ccd731067.tar.bz2
firmware-e55d55edc08d5a5ca557e3ff442ca47ccd731067.zip
[Keymap] added my gergo keymap (#8476)
* added my gergo keymap * updated personal bfo9000 keymap * fixed redundancy, extended debounce time
Diffstat (limited to 'keyboards/gergo/keymaps/abstractkb/rules.mk')
-rw-r--r--keyboards/gergo/keymaps/abstractkb/rules.mk37
1 files changed, 37 insertions, 0 deletions
diff --git a/keyboards/gergo/keymaps/abstractkb/rules.mk b/keyboards/gergo/keymaps/abstractkb/rules.mk
new file mode 100644
index 000000000..b87e59973
--- /dev/null
+++ b/keyboards/gergo/keymaps/abstractkb/rules.mk
@@ -0,0 +1,37 @@
+#----------------------------------------------------------------------------
+# make gergo:germ:dfu
+# Make sure you have dfu-programmer installed!
+#----------------------------------------------------------------------------
+# Firmware options
+BALLER = no # Enable to ball out
+BALLSTEP = 20 # Multiple in px to move, multiplied by layer number
+SCROLLSTEP = 1 # Lines to scroll with ball
+MOUSEKEY_ENABLE = yes # Mouse keys, needed for baller
+
+#Debug options
+VERBOSE = yes
+DEBUG_MATRIX_SCAN_RATE = no
+DEBUG_BALLER = no
+DEBUG_MATRIX = yes
+
+# A bunch of stuff that you shouldn't touch unless you
+# know what you're doing.
+#
+# No touchy, capiche?
+
+ifneq ($(strip $(BALLSTEP)),)
+ OPT_DEFS += -DTRKSTEP=$(strip $(BALLSTEP))
+endif
+ifneq ($(strip $(SCROLLSTEP)),)
+ OPT_DEFS += -DSCROLLSTEP=$(strip $(SCROLLSTEP))
+endif
+ifeq ($(strip $(BALLER)), yes)
+ POINTING_DEVICE_ENABLE = yes
+ OPT_DEFS += -DBALLER
+endif
+ifeq ($(strip $(DEBUG_BALLER)), yes)
+ OPT_DEFS += -DDEBUG_BALLER
+endif
+ifeq ($(strip $(DEBUG_MATRIX)), yes)
+ OPT_DEFS += -DDEBUG_MATRIX
+endif