TF-M Reference Manual  1.2.0
TrustedFirmware-M
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
tfm_assert.h File Reference
#include "tfm_spm_log.h"
Include dependency graph for tfm_assert.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define TFM_ASSERT(cond)
 

Macro Definition Documentation

#define TFM_ASSERT (   cond)
Value:
do { \
if (!(cond)) { \
SPMLOG_INFMSG("Assert:"); \
SPMLOG_INFMSG(__FUNCTION__); \
SPMLOG_INFMSGVAL(",", __LINE__); \
while (1) \
; \
} \
} while (0)
#define SPMLOG_INFMSGVAL(msg, val)
Definition: tfm_spm_log.h:49
#define SPMLOG_INFMSG(msg)
Definition: tfm_spm_log.h:50

Definition at line 15 of file tfm_assert.h.