Skip to content

Commit

Permalink
stm32_iwdg: remove panic function from watchdog irq handler
Browse files Browse the repository at this point in the history
This commit removes the panic function to avoid the following
error message when doing a watchdog reset.

E/TC:1 Panic 'Watchdog' at core/drivers/stm32_iwdg.c:193 <stm32_iwdg_it_handler>
E/TC:1 TEE load address @ 0x82000000
E/TC:1 Call stack:
E/TC:1 0x82008230
E/TC:1 0x82034b88
E/TC:1 0x820193c8
E/TC:1 0x82033abc
E/TC:1 0x82013504
E/TC:1 0x820017dc

https://onedigi.atlassian.net/browse/DEL-9231

Signed-off-by: Mike Engel <[email protected]>
  • Loading branch information
mikedigi committed Sep 26, 2024
1 parent dc0f766 commit be32a34
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions core/drivers/stm32_iwdg.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,6 @@ static enum itr_return stm32_iwdg_it_handler(struct itr_handler *h)
else
io_setbits32(iwdg_base + IWDG_EWCR_OFFSET, IWDG_EWCR_EWIC);

panic("Watchdog");

return ITRR_HANDLED;
}

Expand Down

0 comments on commit be32a34

Please sign in to comment.