Sfoglia il codice sorgente

Add system halt handler.

Vladimir N. Shilov 2 anni fa
parent
commit
a9a238770d
1 ha cambiato i file con 3 aggiunte e 0 eliminazioni
  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 ++; } \
 }
 
 /**