* Initial WIP commit * Update right half pins * Update RGB matrix and layout * Enable more RGB animations * Update license headers * Cleanup keymap and RGB * Move handedness pin definition, cleanup RGB defines * Adjust keymap
11 lines
397 B
C
11 lines
397 B
C
// Copyright 2025 Keebio (@keebio)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "quantum.h"
|
|
|
|
void keyboard_pre_init_kb(void) {
|
|
// Disable the PD peripheral in pre-init because its pins are being used in the matrix:
|
|
PWR->CR3 |= PWR_CR3_UCPD_DBDIS;
|
|
// Call the corresponding _user() function (see https://docs.qmk.fm/#/custom_quantum_functions)
|
|
keyboard_pre_init_user();
|
|
}
|