31 lines
856 B
C
31 lines
856 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
/* USB Device descriptor parameter */
|
|
#define VENDOR_ID 0xFEED
|
|
#define PRODUCT_ID 0x0000
|
|
#define DEVICE_VER 0x0001
|
|
#define MANUFACTURER "Vial"
|
|
#define PRODUCT "STM32F103-vibl example"
|
|
|
|
/* key matrix size */
|
|
#define MATRIX_ROWS 2
|
|
#define MATRIX_COLS 2
|
|
|
|
#define MATRIX_ROW_PINS { B10, B11 }
|
|
#define MATRIX_COL_PINS { B1, B0 }
|
|
|
|
#define DIODE_DIRECTION COL2ROW
|
|
|
|
/* 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
|
|
|
|
/* Use 1000hz polling */
|
|
#define USB_POLLING_INTERVAL_MS 1
|
|
|
|
/* Because we use vibl, this has to be defined here instead of under keymaps/vial/config.h */
|
|
#define VIAL_KEYBOARD_UID {0x07, 0x30, 0x3E, 0x60, 0x00, 0x62, 0xA3, 0xD4}
|