mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-11-30 23:15:51 +00:00
28 lines
517 B
C
28 lines
517 B
C
|
// Copyright 2022 Shem Sedrick (@ssedrick)
|
||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "config_common.h"
|
||
|
|
||
|
|
||
|
/* USB Device descriptor parameters */
|
||
|
#define PRODUCT_ID 0x3435
|
||
|
#define DEVICE_VER 0x0001
|
||
|
|
||
|
#ifndef MANUFACTURER
|
||
|
#define MANUFACTURER ssedrick
|
||
|
#endif
|
||
|
|
||
|
#define MATRIX_ROWS 10
|
||
|
#define MATRIX_COLUMNS 5
|
||
|
|
||
|
// Wiring pins
|
||
|
#define MATRIX_ROW_PINS { F7, B1, B3, B2, B4 }
|
||
|
#define MATRIX_COL_PINS { D4, C6, D7, E6, F6 }
|
||
|
|
||
|
#define DIODE_DIRECTION COL2ROW
|
||
|
|
||
|
#define EE_HANDS
|
||
|
#define SPLIT_USB_DETECT
|