EFM32 Happy Gecko Software Documentation  efm32hg-doc-4.2.1
em_assert.c
Go to the documentation of this file.
1 /***************************************************************************/
34 #include "em_assert.h"
35 
36 #if defined(DEBUG_EFM)
37 
38 /***************************************************************************/
60 void assertEFM(const char *file, int line)
61 {
62  (void)file; /* Unused parameter */
63  (void)line; /* Unused parameter */
64 
65  while (1)
66  ;
67 }
68 
69 #endif /* DEBUG_EFM */
Emlib peripheral API "assert" implementation.