From 0eb535f7574673cdbe0fbc9d6890488f0590faee Mon Sep 17 00:00:00 2001 From: "lxbpxylps@126.com" Date: Tue, 12 Oct 2021 18:04:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=97=A0=E7=94=A8=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- System/sys/sys.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/System/sys/sys.c b/System/sys/sys.c index 5e50b63..5f0d9b0 100644 --- a/System/sys/sys.c +++ b/System/sys/sys.c @@ -37,8 +37,6 @@ void SystemClock_Config(void) if (HAL_RCC_OscConfig(&oscinitstruct) != HAL_OK) { Error_Handler(__FILE__, __LINE__); - while (1) - ; } /* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2 @@ -51,8 +49,6 @@ void SystemClock_Config(void) if (HAL_RCC_ClockConfig(&clkinitstruct, FLASH_LATENCY_2) != HAL_OK) { Error_Handler(__FILE__, __LINE__); - while (1) - ; } }