summary refs log tree commit diff
diff options
context:
space:
mode:
authormarcostrauss <32447479+marcostrauss@users.noreply.github.com>2017-10-21 22:00:41 +0200
committerJack Humbert <jack.humb@gmail.com>2017-10-21 10:00:41 -1000
commit57bf00f28f156e7b2d4838970e60ee4bcd6190f4 (patch)
tree611decbf57280079ad2c5f409121cf20d6b58b50
parentb25338a8098f1b9988707b5c1a6ad8d99f55baf6 (diff)
ErgoDone: VID/PID/NKRO (#1872)
* - Fancy default PID and option for corresponding VID.
- Information about official VID/PID.
- Correct manufacturer name.
- NKRO enabled by default.

* Resolved build error with `#ifndef FORCE_NKRO`.
-rw-r--r--keyboards/ergodone/config.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/keyboards/ergodone/config.h b/keyboards/ergodone/config.h
index d3e0f80360..1feff26aa7 100644
--- a/keyboards/ergodone/config.h
+++ b/keyboards/ergodone/config.h
@@ -4,10 +4,11 @@
 #include "config_common.h"
 
 /* USB Device descriptor parameter */
-#define VENDOR_ID       0xFEED
-#define PRODUCT_ID      0x1307
+#define VENDOR_ID       0xFEED  // You may want to use 0x47EC for "KTEC", which doesn't seem to be in official use as of October 2017.
+#define PRODUCT_ID      0xE60D  // For "EGOD"/"ErgoDone".
+// The official ErgoDone VID and PID are documented at http://pid.codes/1209/2328/.
 #define DEVICE_VER      0x0001
-#define MANUFACTURER    ErgoDone
+#define MANUFACTURER    K.T.E.C.
 #define PRODUCT         ErgoDone
 #define DESCRIPTION     QMK keyboard firmware for ErgoDone
 
@@ -56,6 +57,11 @@
 
 #define USB_MAX_POWER_CONSUMPTION 500
 
+/* NKRO */
+#ifndef FORCE_NKRO
+    #define FORCE_NKRO  // Depends on NKRO_ENABLE.
+#endif
+
 /*
  * Feature disable options
  *  These options are also useful to firmware size reduction.