mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-25 09:56:54 +06:00
9 lines
236 B
C
9 lines
236 B
C
// Copyright 2022 Nick Brassel (@tzarc)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#include "quantum.h"
|
|
|
|
void bootloader_jump(void) {
|
|
// TODO: Work out how to jump to LDROM, for now just reset the board.
|
|
NVIC_SystemReset();
|
|
}
|