IxOsalOsAssert.h 381 B

12345678910
  1. #ifndef IxOsalOsAssert_H
  2. #define IxOsalOsAssert_H
  3. #define IX_OSAL_OS_ASSERT(c) if(!(c)) \
  4. { \
  5. ixOsalLog (IX_OSAL_LOG_LVL_ERROR, IX_OSAL_LOG_DEV_STDOUT, "Assertion failure \n", 0, 0, 0, 0, 0, 0);\
  6. while(1); \
  7. }
  8. #endif /* IxOsalOsAssert_H */