[bsp][bluetrum] Adding RT_USING_CONSOLE judgment

This commit is contained in:
greedyhao 2021-08-12 17:12:52 +08:00
parent e6afb03d14
commit 4b4ec3e789
1 changed files with 4 additions and 0 deletions

View File

@ -30,6 +30,7 @@ static struct rt_mutex mutex_cache = {0};
extern volatile rt_uint8_t rt_interrupt_nest;
extern uint32_t __heap_start, __heap_end;
#ifdef RT_USING_CONSOLE
void hal_printf(const char *fmt, ...)
{
rt_device_t console = rt_console_get_device();
@ -65,6 +66,7 @@ void hal_printf(const char *fmt, ...)
#endif
va_end(args);
}
#endif
RT_SECTION(".irq.timer")
void timer0_isr(int vector, void *param)
@ -210,8 +212,10 @@ void exception_isr(void)
extern long list_thread(void);
sys_error_hook(1);
#ifdef RT_USING_CONSOLE
rt_console_set_device(RT_NULL);
rt_kprintf(stack_info, rt_thread_self()->sp, rt_thread_self()->name);
#endif
while(1);
}