From: Nathael Pajani Date: Thu, 21 Sep 2023 22:03:41 +0000 (+0200) Subject: Typo fix and comment update X-Git-Url: http://git.techno-innov.fr/?a=commitdiff_plain;h=d90599ecface1a60e88ae14c806200b9e8a7662e;p=soft%2Flpc122x%2Fcore Typo fix and comment update --- diff --git a/core/fault_handlers.c b/core/fault_handlers.c index f49e63e..570995e 100644 --- a/core/fault_handlers.c +++ b/core/fault_handlers.c @@ -24,9 +24,11 @@ /* Default "fault" handlers, which catch the fault exceptions. * These are defined as weak aliases of a dummy fault handler which enters an empty infinite - * loop and chould be overidden by user defined handlers. + * loop and should be overidden by user defined handlers. */ +/* Note that this has not been fully tested */ + #include "lib/stdint.h" void fault_info(const char* name, uint32_t len) __attribute__ ((weak, alias ("Dummy_Fault_Handler")));