EFR32 Blue Gecko 1 Software Documentation  efr32bg1-doc-5.1.2
em_assert.c
Go to the documentation of this file.
1 /***************************************************************************/
33 #include "em_assert.h"
34 #include <stdbool.h>
35 
36 /***************************************************************************/
41 /***************************************************************************/
46 #if defined(DEBUG_EFM)
47 /***************************************************************************/
70 void assertEFM(const char *file, int line)
71 {
72  (void)file; /* Unused parameter */
73  (void)line; /* Unused parameter */
74 
75  while (true)
76  {
77  }
78 }
79 #endif /* DEBUG_EFM */
80 
Emlib peripheral API "assert" implementation.
void assertEFM(const char *file, int line)
EFM internal assert handling.
Definition: em_assert.c:70