e3c7201a20
* Furi: rename and move core * Furi: drop CMSIS_OS header and unused api, partially refactor and cleanup the rest * Furi: CMSIS_OS drop and refactoring. * Furi: refactoring, remove cmsis legacy * Furi: fix incorrect assert on queue deallocation, cleanup timer * Furi: improve delay api, get rid of floats * hal: dropped furi_hal_crc * Furi: move DWT based delay to cortex HAL * Furi: update core documentation Co-authored-by: hedger <hedger@nanode.su>
53 lines
1.6 KiB
C
53 lines
1.6 KiB
C
/**
|
|
******************************************************************************
|
|
* @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
|
|
|
|
#include <core/check.h>
|
|
|
|
#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
|
|
|
|
#endif /* STM32_ASSERT_H */
|