8ad2e30732
Affects: - `atreus` - `cablecardesigns/cypher/rev6` - `caffeinated/serpent65` - `cannonkeys/adelie` - `cannonkeys/aella` - `cannonkeys/an_c` - `cannonkeys/atlas` - `cannonkeys/atlas_alps` - `cannonkeys/balance` - `cannonkeys/brutalv2_65` - `cannonkeys/chimera65` - `cannonkeys/cloudline` - `cannonkeys/crin` - `cannonkeys/db60` - `cannonkeys/devastatingtkl` - `cannonkeys/gentoo` - `cannonkeys/gentoo_hs` - `cannonkeys/hoodrowg` - `cannonkeys/instant60` - `cannonkeys/instant65` - `cannonkeys/iron165` - `cannonkeys/malicious_ergo` - `cannonkeys/obliterated75` - `cannonkeys/onyx` - `cannonkeys/ortho48` - `cannonkeys/ortho60` - `cannonkeys/ortho75` - `cannonkeys/practice60` - `cannonkeys/practice65` - `cannonkeys/rekt1800` - `cannonkeys/ripple` - `cannonkeys/sagittarius` - `cannonkeys/satisfaction75` - `cannonkeys/savage65` - `cannonkeys/tmov2` - `cannonkeys/tsukuyomi` - `cannonkeys/vicious40` - `capsunlocked/cu24` - `capsunlocked/cu65` - `capsunlocked/cu7` - `capsunlocked/cu75` - `capsunlocked/cu80/v1`
45 lines
1.2 KiB
C
45 lines
1.2 KiB
C
// Copyright 2023 Andrew Kannan (@awkannan)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
/* Ensure we jump to bootloader if the QK_BOOT keycode was pressed */
|
|
#define EARLY_INIT_PERFORM_BOOTLOADER_JUMP TRUE
|
|
|
|
/* LSE clock */
|
|
#define STM32_LSECLK 32768
|
|
|
|
#define BACKLIGHT_PWM_DRIVER PWMD3
|
|
#define BACKLIGHT_PWM_CHANNEL 1
|
|
#define BACKLIGHT_PAL_MODE 1
|
|
|
|
// I2C config
|
|
#define I2C_DRIVER I2CD1
|
|
#define I2C1_SCL_PIN B6
|
|
#define I2C1_SDA_PIN B7
|
|
#define I2C1_SCL_PAL_MODE 1
|
|
#define I2C1_SDA_PAL_MODE 1
|
|
#define I2C1_TIMINGR_PRESC 0x00U
|
|
#define I2C1_TIMINGR_SCLDEL 0x03U
|
|
#define I2C1_TIMINGR_SDADEL 0x01U
|
|
#define I2C1_TIMINGR_SCLH 0x03U
|
|
#define I2C1_TIMINGR_SCLL 0x09U
|
|
|
|
// configure oled driver for the 128x32 oled
|
|
#define OLED_UPDATE_INTERVAL 66 // ~15fps
|
|
|
|
// OLED_TIMEOUT is incompatible with the OLED_OFF mode
|
|
#define OLED_TIMEOUT 0
|
|
|
|
// OLED timeout reimplemented in the keyboard-specific code
|
|
#define CUSTOM_OLED_TIMEOUT 60000
|
|
|
|
// Custom config starts after VIA's EEPROM usage,
|
|
// dynamic keymaps start after this.
|
|
// Custom config Usage:
|
|
// 1 for enabled encoder modes (1 byte)
|
|
// 1 for OLED default mode (1 byte)
|
|
// 6 for 3x custom encoder settings, left, right, and press (18 bytes)
|
|
#define VIA_EEPROM_CUSTOM_CONFIG_SIZE 20
|
|
|
|
|