MAX32650 Peripheral Driver API
Peripheral Driver API for the MAX32650
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
Assertion Checks for Debugging

Macros

#define MXC_ASSERT(expr)
 

Functions

void mxc_assert (const char *expr, const char *file, int line)
 

Detailed Description

Assertion checks for debugging.

Macro Definition Documentation

◆ MXC_ASSERT

#define MXC_ASSERT (   expr)
Note
Macro that checks the expression for true and generates an assertion if false. The symbol MXC_ASSERT_ENABLE must be defined to use this macro.

Function Documentation

◆ mxc_assert()

void mxc_assert ( const char *  expr,
const char *  file,
int  line 
)

Assert an error when the given expression fails during debugging.

Parameters
exprString with the expression that failed the assertion.
fileFile containing the failed assertion.
lineLine number for the failed assertion.
Note
This is defined as a weak function and can be overridden at the application layer to print the debugging information.
printf("%s, file: %s, line %d\n", expr, file, line);
To use debug assertions, the symbol MXC_ASSERT_ENABLE must be defined.