From 340cdc7966fbda1a28ce011cbaaeb6878b0b6064 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Sun, 5 Sep 2010 19:11:01 -0400 Subject: debug verbosity levels --- libmaple/exc.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libmaple/exc.c') diff --git a/libmaple/exc.c b/libmaple/exc.c index dd02476..a5c67fa 100644 --- a/libmaple/exc.c +++ b/libmaple/exc.c @@ -24,7 +24,7 @@ * ****************************************************************************/ /** - * @brief libmaple exception handlers. If MAPLE_DEBUG is set, then these + * @brief libmaple exception handlers. If DEBUG_LEVEL > DEBUG_FAULT, then these * exceptions will ASSERT fail and call into the default _fail() light * blinking. */ @@ -32,31 +32,31 @@ #include "util.h" void NMIException(void) { - ASSERT(0); + ASSERT_FAULT(0); while(1) ; } void HardFaultException(void) { - ASSERT(0); + ASSERT_FAULT(0); while(1) ; } void MemManageException(void) { - ASSERT(0); + ASSERT_FAULT(0); while(1) ; } void BusFaultException(void) { - ASSERT(0); + ASSERT_FAULT(0); while(1) ; } void UsageFaultException(void) { - ASSERT(0); + ASSERT_FAULT(0); while(1) ; } -- cgit v1.2.3