CARME-M4 Assertion handling.
More...
|
file | assert.c |
| Print assert messages to the stdout.
If stdout is a serial port, please initialize the port at startup.
|
|
|
void | __assert (const char *file, int line, const char *func) |
| Reports the name of the source file and the source line number where the assert error has occurred. More...
|
|
void | __assert_func (const char *file, int line, const char *func, const char *additional) |
| Reports the name of the source file and the source line number where the assert error has occurred. More...
|
|
CARME-M4 Assertion handling.
void __assert |
( |
const char * |
file, |
|
|
int |
line, |
|
|
const char * |
func |
|
) |
| |
Reports the name of the source file and the source line number where the assert error has occurred.
- Parameters
-
[in] | file | pointer to the source file name |
[in] | line | assert error line source number |
[in] | func | pointer to the source function name |
- Returns
- None
Definition at line 106 of file assert.c.
void __assert_func |
( |
const char * |
file, |
|
|
int |
line, |
|
|
const char * |
func, |
|
|
const char * |
additional |
|
) |
| |
Reports the name of the source file and the source line number where the assert error has occurred.
- Parameters
-
[in] | file | pointer to the source file name |
[in] | line | assert_param error line source number |
[in] | func | pointer to the source function name |
[in] | additional | pointer to additional informations |
- Returns
- None
Definition at line 127 of file assert.c.