From f37ae0510e1835055c07fbb7b274993ab9185c67 Mon Sep 17 00:00:00 2001 From: cfif Date: Sat, 20 Jun 2026 17:22:18 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CommandLines.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CommandLines.c b/CommandLines.c index 759074e..6d8dd3d 100644 --- a/CommandLines.c +++ b/CommandLines.c @@ -10,6 +10,7 @@ #include "math.h" #include "stdlib.h" #include "fc7xxx_driver_rgm.h" +#include "BootJump.h" int32_t CliCmd_baseCommandHelp(void *env, tCliCmd *cli) { @@ -24,7 +25,8 @@ int32_t CliCmd_baseCommandHelp(void *env, tCliCmd *cli) { } int32_t CliCmd_baseCommandReboot(void *env, tCliCmd *cli) { - NVIC_SystemReset(); + Reset(); + //NVIC_SystemReset(); return 0; }