summaryrefslogtreecommitdiff
path: root/keyboards/jm60/jm60.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/jm60/jm60.c')
-rw-r--r--keyboards/jm60/jm60.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/keyboards/jm60/jm60.c b/keyboards/jm60/jm60.c
index f7b434f30e..823892dce9 100644
--- a/keyboards/jm60/jm60.c
+++ b/keyboards/jm60/jm60.c
@@ -20,3 +20,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
void board_init(void) {
AFIO->MAPR |= AFIO_MAPR_SWJ_CFG_JTAGDISABLE;
}
+
+void bootloader_jump(void) {
+ // This board doesn't use the "standard" stm32duino bootloader. There's no information on how to jump to the custom bootloader, so all we can do here is reset.
+ NVIC_SystemReset();
+}