23 lines
367 B
C
23 lines
367 B
C
/*
|
|
* mcuboot_assert.h
|
|
*
|
|
* Cypress-specific assert() macro redefinition
|
|
*
|
|
*/
|
|
|
|
#ifndef MCUBOOT_ASSERT_H
|
|
#define MCUBOOT_ASSERT_H
|
|
|
|
//#include "cy_bootloader_services.h"
|
|
|
|
#define CYBL_ASSERT(...) Cy_BLServ_Assert(__VA_ARGS__)
|
|
|
|
#if !defined(NDEBUG)
|
|
#undef assert
|
|
#define assert(...) CYBL_ASSERT(__VA_ARGS__)
|
|
#else
|
|
#define assert
|
|
#endif
|
|
|
|
#endif /* MCUBOOT_ASSERT_H */
|