Merge pull request #5371 from mysterywolf/common
[stm32][drv_common] add LOG_E for Error_Handler
This commit is contained in:
commit
bf7a1d7cb0
|
@ -16,8 +16,12 @@
|
||||||
#include "drv_usart_v2.h"
|
#include "drv_usart_v2.h"
|
||||||
#else
|
#else
|
||||||
#include "drv_usart.h"
|
#include "drv_usart.h"
|
||||||
#endif
|
#endif /* RT_USING_SERIAL */
|
||||||
#endif
|
#endif /* RT_USING_SERIAL_V2 */
|
||||||
|
|
||||||
|
#define DBG_TAG "drv_common"
|
||||||
|
#define DBG_LVL DBG_INFO
|
||||||
|
#include <rtdbg.h>
|
||||||
|
|
||||||
#ifdef RT_USING_FINSH
|
#ifdef RT_USING_FINSH
|
||||||
#include <finsh.h>
|
#include <finsh.h>
|
||||||
|
@ -115,6 +119,7 @@ void _Error_Handler(char *s, int num)
|
||||||
{
|
{
|
||||||
/* USER CODE BEGIN Error_Handler */
|
/* USER CODE BEGIN Error_Handler */
|
||||||
/* User can add his own implementation to report the HAL error return state */
|
/* User can add his own implementation to report the HAL error return state */
|
||||||
|
LOG_E("Error_Handler at file:%s num:%d", s, num);
|
||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue