Browse Source

[Keyboard] Olly Orion: Disable SWD and JTAG (#20169)

Co-authored-by: Joel Challis <git@zvecr.com>
pull/18468/head
mechlovin 1 year ago
committed by GitHub
parent
commit
650a0b8ad4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions
  1. +7
    -2
      keyboards/mechlovin/olly/orion/orion.c

+ 7
- 2
keyboards/mechlovin/olly/orion/orion.c View File

@ -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) {


Loading…
Cancel
Save