summaryrefslogtreecommitdiff
path: root/keyboards/pegasus/config.h
diff options
context:
space:
mode:
authormelonbred <61572569+melonbred@users.noreply.github.com>2022-04-12 23:36:33 -0700
committerGitHub <noreply@github.com>2022-04-12 23:36:33 -0700
commitf3a49876d50c7fc8d71f9718de9319321d8e94c9 (patch)
tree914270c91c7fc8e14f3e08c4a20034ae7becac84 /keyboards/pegasus/config.h
parent9a38ebc65600b42681e86179ab2ffe39dfd9dcdb (diff)
[Keyboard] add pegasus (#16701)
Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/pegasus/config.h')
-rw-r--r--keyboards/pegasus/config.h80
1 files changed, 80 insertions, 0 deletions
diff --git a/keyboards/pegasus/config.h b/keyboards/pegasus/config.h
new file mode 100644
index 0000000000..6f773da966
--- /dev/null
+++ b/keyboards/pegasus/config.h
@@ -0,0 +1,80 @@
+/*
+Copyright 2020 melonbred
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#pragma once
+
+#include "config_common.h"
+
+/* USB Device descriptor parameter */
+#define VENDOR_ID 0xFEED
+#define PRODUCT_ID 0x0000
+#define DEVICE_VER 0x0001
+#define MANUFACTURER melonbred
+#define PRODUCT Pegasus
+
+/* key matrix size */
+#define MATRIX_ROWS 4
+#define MATRIX_COLS 12
+
+/*
+ * 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 { F0, F1, F4, E6 }
+#define MATRIX_COL_PINS { D2, D4, D6, D7, B4, B5, B6, C6, C7, F7, F6, F5 }
+//#define UNUSED_PINS { B0, B1, B2, B3, B7 }
+
+
+/* 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
+
+
+/* Rotary Encoder Definitions */
+#define ENCODERS_PAD_A { D0, D5 }
+#define ENCODERS_PAD_B { D1, D3 }
+
+/*
+ * Feature disable options
+ * These options are also useful to firmware size reduction.
+ */
+
+/* disable debug print */
+//#define NO_DEBUG
+
+/* disable print */
+//#define NO_PRINT
+
+/* disable action features */
+//#define NO_ACTION_LAYER
+//#define NO_ACTION_TAPPING
+//#define NO_ACTION_ONESHOT