summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Vincent <jesse@fsck.com>2019-03-27 15:07:22 -0700
committerGitHub <noreply@github.com>2019-03-27 15:07:22 -0700
commit5c77a3731e7dcb2336a0257b467d6e4f1466e24b (patch)
tree3c852990392902658f182f683d2e938b7fd58eb6
parent5b48f32b1c0e26b68fd9aed8dc700aa6749be9d5 (diff)
parentd392c641fced7bb5ac98010be40093da164083b1 (diff)
downloadmodel01-firmware-5c77a3731e7dcb2336a0257b467d6e4f1466e24b.tar.gz
model01-firmware-5c77a3731e7dcb2336a0257b467d6e4f1466e24b.tar.bz2
model01-firmware-5c77a3731e7dcb2336a0257b467d6e4f1466e24b.zip
Merge pull request #83 from afreakk/unused
remove unused enum
-rw-r--r--Model01-Firmware.ino13
1 files changed, 0 insertions, 13 deletions
diff --git a/Model01-Firmware.ino b/Model01-Firmware.ino
index 124be72..6a008e1 100644
--- a/Model01-Firmware.ino
+++ b/Model01-Firmware.ino
@@ -379,19 +379,6 @@ void hostPowerManagementEventHandler(kaleidoscope::plugin::HostPowerManagement::
toggleLedsOnSuspendResume(event);
}
-/** This 'enum' is a list of all the magic combos used by the Model 01's
- * firmware The names aren't particularly important. What is important is that
- * each is unique.
- *
- * These are the names of your magic combos. They will be used by the
- * `USE_MAGIC_COMBOS` call below.
- */
-enum {
- // Toggle between Boot (6-key rollover; for BIOSes and early boot) and NKRO
- // mode.
- COMBO_TOGGLE_NKRO_MODE
-};
-
/** A tiny wrapper, to be used by MagicCombo.
* This simply toggles the keyboard protocol via USBQuirks, and wraps it within
* a function with an unused argument, to match what MagicCombo expects.