瀏覽代碼

Add system halt handler.

Vladimir N. Shilov 2 年之前
父節點
當前提交
a9a238770d
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      cfg/chconf.h

+ 3 - 0
cfg/chconf.h

@@ -787,6 +787,9 @@
  */
 #define CH_CFG_SYSTEM_HALT_HOOK(reason) {                                   \
   /* System halt code here.*/                                               \
+  while (*reason) { \
+    while ((USART1->SR & USART_SR_TXE) == 0) { __NOP(); } \
+    USART1->DR = *reason; reason ++; } \
 }
 
 /**