2022-02-07 14:09:21 +11:00
|
|
|
// Copyright 2022 Nick Brassel (@tzarc)
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2023-04-27 07:45:43 +10:00
|
|
|
#include "quantum.h"
|
2022-02-07 14:09:21 +11:00
|
|
|
|
|
|
|
void bootloader_jump(void) {
|
|
|
|
// TODO: Work out how to jump to LDROM, for now just reset the board.
|
|
|
|
NVIC_SystemReset();
|
|
|
|
}
|