commit 0dad14dc819adc19e94c913de79638a8ec25e139 parent 280153b8f9c91eca98b81b3a6bff9541bf8eb1b5 Author: QMK Bot <hello@qmk.fm> Date: Tue, 21 Mar 2023 08:18:04 +0000 Merge remote-tracking branch 'origin/master' into develop Diffstat:
| M | keyboards/mechlovin/olly/orion/orion.c | | | 9 | +++++++-- |
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/keyboards/mechlovin/olly/orion/orion.c b/keyboards/mechlovin/olly/orion/orion.c @@ -16,13 +16,18 @@ #include "orion.h" -void led_init_ports(void) { +void board_init(void) { + //JTAG-DP Disabled and SW-DP Enabled + AFIO->MAPR = (AFIO->MAPR & ~AFIO_MAPR_SWJ_CFG_Msk) | AFIO_MAPR_SWJ_CFG_DISABLE; +} + +void keyboard_pre_init_kb(void) { setPinOutput(B5); setPinOutput(B6); setPinOutput(B7); setPinOutput(B8); setPinOutput(B9); - + keyboard_pre_init_user(); } layer_state_t layer_state_set_kb(layer_state_t state) {