diff options
Diffstat (limited to 'libmaple')
-rw-r--r-- | libmaple/util.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libmaple/util.c b/libmaple/util.c index eead625..1a7c36d 100644 --- a/libmaple/util.c +++ b/libmaple/util.c @@ -109,6 +109,15 @@ void _fail(const char* file, int line, const char* exp) { } /** + * @brief Provide an __assert_func handler to libc so that calls to assert() get + * redirected to _fail. + */ +void __assert_func(const char* file, int line, const char* method, + const char* expression) { + _fail(file, line, expression); +} + +/** * @brief Fades the error LED on and off * @sideeffect Sets output push-pull on ERROR_LED_PIN. */ |