* fbt: reworking targets & assets handling WIP * fbt: dist fixes * fbt: moved SD card resources to owning apps * unit_tests: moved resources to app folder * github: updated unit_tests paths * github: packaging fixes * unit_tests: fixes * fbt: assets: internal cleanup * fbt: reworked assets handling * github: unit_tests: reintroducing fixes * minor cleanup * fbt: naming changes to reflect private nature of scons tools * fbt: resources: fixed dist archive paths * docs: updated paths * docs: updated more paths * docs: included "resources" parameter in app manifest docs; updated assets readme * updated gitignore for assets * github: updated action versions * unit_tests: restored timeout; scripts: assets: logging changes * gh: don't upload desktop animations for unit test run Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			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 */
 |