From 81fce5d00096f89829e27ffa699c3d23774edf0b Mon Sep 17 00:00:00 2001 From: tanek liang Date: Wed, 14 Jun 2017 16:41:23 +0800 Subject: [PATCH] [bsp] replace error_handler() by RT_ASSERT(RT_NULL) --- bsp/stm32l072/board/board.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bsp/stm32l072/board/board.c b/bsp/stm32l072/board/board.c index 963ea5bbe..80c7946a0 100644 --- a/bsp/stm32l072/board/board.c +++ b/bsp/stm32l072/board/board.c @@ -68,7 +68,10 @@ static void RCC_Configuration(void) OscInit.PLL.PLLDIV = RCC_PLLDIV_2; OscInit.PLL.PLLMUL = RCC_PLLMUL_4; OscInit.PLL.PLLSource = RCC_PLLSOURCE_HSI; - HAL_RCC_OscConfig(&OscInit); + if (HAL_RCC_OscConfig(&OscInit) != HAL_OK) + { + RT_ASSERT(RT_NULL); + } /* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2 clocks dividers */ @@ -83,7 +86,7 @@ static void RCC_Configuration(void) ClkInit.APB2CLKDivider = RCC_HCLK_DIV1; if (HAL_RCC_ClockConfig(&ClkInit, FLASH_LATENCY_1) != HAL_OK) { - error_handler(); + RT_ASSERT(RT_NULL); } } -- GitLab