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

Functions

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

Detailed Description

Assertion checks for debugging.

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.

Note
To use debug assertions, the symbol MXC_ASSERT_ENABLE must be defined.
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.