summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/mutepad/config.h
diff options
context:
space:
mode:
authorJoshua Barber <josh@jwjb.io>2022-03-20 17:02:46 +0000
committerGitHub <noreply@github.com>2022-03-20 17:02:46 +0000
commit6125f7bf4d15b4ab9403186a5282bb75bc00bd07 (patch)
tree65a5d1b076a254a325ee876ed613ac38fb62fe9a /keyboards/handwired/mutepad/config.h
parent2f095b8925df98cf2c8c818c8fc44a9015efd6be (diff)
Add MutePad keyboard (Handwired) (#16590)
* Add MutePad keyboard * Update info.json and readme * Move mutepad to handwired folder * Address PR comments
Diffstat (limited to 'keyboards/handwired/mutepad/config.h')
-rw-r--r--keyboards/handwired/mutepad/config.h90
1 files changed, 90 insertions, 0 deletions
diff --git a/keyboards/handwired/mutepad/config.h b/keyboards/handwired/mutepad/config.h
new file mode 100644
index 0000000000..7113063223
--- /dev/null
+++ b/keyboards/handwired/mutepad/config.h
@@ -0,0 +1,90 @@
+// Copyright 2022 JoshwJB (@JoshwJB)
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "config_common.h"
+
+/* USB Device descriptor parameter */
+#define VENDOR_ID 0xFEED
+#define PRODUCT_ID 0x0000
+#define DEVICE_VER 0x0001
+#define MANUFACTURER JoshwJB
+#define PRODUCT MutePad
+
+/* key matrix size */
+#define MATRIX_ROWS 1
+#define MATRIX_COLS 4
+
+/*
+ * Keyboard Matrix Assignments
+ *
+ * Change this to how you wired your keyboard
+ * COLS: AVR pins used for columns, left to right
+ * ROWS: AVR pins used for rows, top to bottom
+ * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
+ * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
+ *
+ */
+#define MATRIX_ROW_PINS \
+ { F6 }
+#define MATRIX_COL_PINS \
+ { B1, B3, B2, B6 }
+#define UNUSED_PINS
+
+/* encoder support */
+#define ENCODERS_PAD_A \
+ { F4 }
+#define ENCODERS_PAD_B \
+ { F5 }
+
+#define ENCODER_RESOLUTION 2
+
+#define TAP_CODE_DELAY 10
+
+/* COL2ROW, ROW2COL */
+#define DIODE_DIRECTION COL2ROW
+
+/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
+#define DEBOUNCE 5
+
+/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
+#define LOCKING_SUPPORT_ENABLE
+/* Locking resynchronize hack */
+#define LOCKING_RESYNC_ENABLE
+
+/*
+ * Force NKRO
+ *
+ * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
+ * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
+ * makefile for this to work.)
+ *
+ * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
+ * until the next keyboard reset.
+ *
+ * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
+ * fully operational during normal computer usage.
+ *
+ * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
+ * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
+ * bootmagic, NKRO mode will always be enabled until it is toggled again during a
+ * power-up.
+ *
+ */
+#define FORCE_NKRO
+
+/*
+ * Feature disable options
+ * These options are also useful to firmware size reduction.
+ */
+
+/* disable debug print */
+//#define NO_DEBUG
+
+/* disable print */
+//#define NO_PRINT
+
+/* Bootmagic Lite key configuration */
+#define BOOTMAGIC_LITE_ROW 0
+#define BOOTMAGIC_LITE_COLUMN 0