78 lines
1.7 KiB
C
78 lines
1.7 KiB
C
#pragma once
|
|
|
|
#include "config_common.h"
|
|
|
|
/* USB Device descriptor parameter */
|
|
#define VENDOR_ID 0xFEED
|
|
#define PRODUCT_ID 0x6060
|
|
#define DEVICE_VER 0x0001
|
|
#define MANUFACTURER Andrew Dunai
|
|
#define PRODUCT D48
|
|
|
|
/* Key matrix size */
|
|
#define MATRIX_ROWS 5
|
|
#define MATRIX_COLS 12
|
|
|
|
/* Key matrix pins */
|
|
#define MATRIX_ROW_PINS { B8, B9, B1, B2, B4 }
|
|
|
|
#define MATRIX_COL_PINS { A2, B0, A7, A8, A13, A14, B12, B11, B10, B15, B14, B13 }
|
|
#define UNUSED_PINS
|
|
|
|
/* COL2ROW or ROW2COL */
|
|
#define DIODE_DIRECTION COL2ROW
|
|
|
|
/* Set 0 if debouncing isn't 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
|
|
|
|
/* prevent stuck modifiers */
|
|
// #define PREVENT_STUCK_MODIFIERS
|
|
|
|
/* RGB Underglow */
|
|
#ifdef RGBLIGHT_ENABLE
|
|
#define RGB_DI_PIN A15
|
|
#define RGBLED_NUM 14
|
|
#define RGBLIGHT_HUE_STEP 8
|
|
#define RGBLIGHT_SAT_STEP 8
|
|
#define RGBLIGHT_VAL_STEP 8
|
|
#define RGBLIGHT_ANIMATIONS
|
|
#endif
|
|
|
|
/* Audio */
|
|
#ifdef AUDIO_ENABLE
|
|
#define STARTUP_SONG_DOOM SONG(E1M1_DOOM)
|
|
#define STARTUP_SONG SONG( \
|
|
Q__NOTE(_E6), \
|
|
Q__NOTE(_A6), \
|
|
H__NOTE(_E7), \
|
|
Q__NOTE(_E6), \
|
|
Q__NOTE(_E7) \
|
|
)
|
|
#endif
|
|
|
|
/* Encoders */
|
|
#define ENCODERS_PAD_A { B3, A0 }
|
|
#define ENCODERS_PAD_B { A6, A1 }
|
|
/* #define ENCODER_RESOLUTION 4 */
|
|
|
|
/* OLED */
|
|
#define OLED_FONT_H "glcdfont_d48.c"
|
|
#define OLED_TIMEOUT 0
|
|
// #define OLED_SCROLL_TIMEOUT 1000
|
|
|
|
/* Taps (encoder tap_code) */
|
|
#define TAP_CODE_DELAY 10
|
|
|
|
/* I2C */
|
|
//#define I2C1_DUTY_CYCLE FAST_DUTY_CYCLE_2
|
|
//#define PAL_MODE_STM32_ALTERNATE_OPENDRAIN (PAL_MODE_ALTERNATE(4) | PAL_STM32_OTYPE_OPENDRAIN)
|
|
|
|
/* DS1307 */
|
|
#define DS1307_ADDR (0x68 << 1)
|