summaryrefslogtreecommitdiff
path: root/keyboards/mechlovin/olly/orion
diff options
context:
space:
mode:
authormechlovin <57231893+mechlovin@users.noreply.github.com>2023-03-21 15:17:24 +0700
committerGitHub <noreply@github.com>2023-03-21 01:17:24 -0700
commit650a0b8ad4425510fc76dc787e63f399d35036c2 (patch)
tree47e305d7239058b2fd567c972df32d2b20b00e7d /keyboards/mechlovin/olly/orion
parent0f07fcc8d4d746a1c04042c24ddd6e0875941636 (diff)
[Keyboard] Olly Orion: Disable SWD and JTAG (#20169)
Co-authored-by: Joel Challis <git@zvecr.com>
Diffstat (limited to 'keyboards/mechlovin/olly/orion')
-rw-r--r--keyboards/mechlovin/olly/orion/orion.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/keyboards/mechlovin/olly/orion/orion.c b/keyboards/mechlovin/olly/orion/orion.c
index 9f02f1a5fa..270683fa4c 100644
--- 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) {