Revert "feat(fix): fixed the problem of reboot stuck"
This reverts commit 67d159bd47b6cf87700657ef6308f0f69fb8a723.
.. | .. |
---|
94 | 94 | |
---|
95 | 95 | /* daemon & message & user defined task loop process */ |
---|
96 | 96 | LOG("daemon service setup...\n"); |
---|
97 | | - while (1) { |
---|
| 97 | + while (0) { |
---|
98 | 98 | /* message loop process */ |
---|
99 | 99 | message_process_loop(); |
---|
100 | 100 | |
---|
.. | .. |
---|
36 | 36 | s32 debugger_init(void) |
---|
37 | 37 | { |
---|
38 | 38 | /* initialize serial module */ |
---|
39 | | - //uart_init(); |
---|
| 39 | + uart_init(); |
---|
40 | 40 | #ifdef CFG_SHELL_USED |
---|
41 | 41 | extern s32 getcmd(void *parg); |
---|
42 | 42 | install_isr(INTC_R_UART_IRQ, getcmd, NULL); |
---|