2022-05-06 13:37:10 +00:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @file stm32_assert.h
|
|
|
|
* @author MCD Application Team
|
|
|
|
* @brief STM32 assert template file.
|
|
|
|
* This file should be copied to the application folder and renamed
|
|
|
|
* to stm32_assert.h.
|
|
|
|
******************************************************************************
|
|
|
|
* @attention
|
|
|
|
*
|
|
|
|
* Copyright (c) 2019 STMicroelectronics.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
|
|
* in the root directory of this software component.
|
|
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
|
|
#ifndef STM32_ASSERT_H
|
|
|
|
#define STM32_ASSERT_H
|
|
|
|
|
2022-07-20 10:56:33 +00:00
|
|
|
#include <core/check.h>
|
2022-05-06 13:37:10 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Exported types ------------------------------------------------------------*/
|
|
|
|
/* Exported constants --------------------------------------------------------*/
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
/* Exported macro ------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* We're confident in the parameters we pass to LL functions, so we can skip asserts
|
|
|
|
* since they introduce significant bloat to debug builds */
|
|
|
|
|
|
|
|
#ifdef FURI_LL_DEBUG
|
|
|
|
#define assert_param furi_assert
|
|
|
|
#else
|
|
|
|
#define assert_param(__e) \
|
|
|
|
do { \
|
|
|
|
((void)(__e)); \
|
|
|
|
} while(0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-07-20 10:56:33 +00:00
|
|
|
#endif /* STM32_ASSERT_H */
|