From baabe5e01c2bad65d6129da2b09c8db7dd8ffd8d Mon Sep 17 00:00:00 2001 From: mmi Date: Thu, 11 Jan 2018 12:40:36 +0000 Subject: [PATCH] added missing file git-svn-id: https://svn.vbchaos.nl/svn/hsb/trunk@414 05563f52-14a8-4384-a975-3d1654cca0fa --- .../inc/stm32f10x_conf.h | 71 +++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 S - Software/0 - HSB MRTS Kathode-MCP/3 - Implementation/0 - Code/STM32F10x_StdPeriph_Lib_V3.5.0/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_conf.h diff --git a/S - Software/0 - HSB MRTS Kathode-MCP/3 - Implementation/0 - Code/STM32F10x_StdPeriph_Lib_V3.5.0/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_conf.h b/S - Software/0 - HSB MRTS Kathode-MCP/3 - Implementation/0 - Code/STM32F10x_StdPeriph_Lib_V3.5.0/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_conf.h new file mode 100644 index 0000000..bc3934a --- /dev/null +++ b/S - Software/0 - HSB MRTS Kathode-MCP/3 - Implementation/0 - Code/STM32F10x_StdPeriph_Lib_V3.5.0/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_conf.h @@ -0,0 +1,71 @@ +// ----------------------------------------------------------------------------- +/// @file stm32f10x_conf.h +/// @brief File description +// ----------------------------------------------------------------------------- +// Micro-Key bv +// Industrieweg 28, 9804 TG Noordhorn +// Postbus 92, 9800 AB Zuidhorn +// The Netherlands +// Tel: +31 594 503020 +// Fax: +31 594 505825 +// Email: support@microkey.nl +// Web: www.microkey.nl +// ----------------------------------------------------------------------------- +/// $Revision$ +/// $Author$ +/// $Date$ +// (c) 2015 Micro-Key bv +// ----------------------------------------------------------------------------- + +/// @defgroup {group_name} {group_description} +/// Description + +/// @file stm32f10x_conf.h +/// @ingroup {group_name} + +#ifndef LIBRARIES_STM32F10X_STDPERIPH_DRIVER_INC_STM32F10X_CONF_H_ +#define LIBRARIES_STM32F10X_STDPERIPH_DRIVER_INC_STM32F10X_CONF_H_ + + +// ----------------------------------------------------------------------------- +// Include files +// ----------------------------------------------------------------------------- + + +// ----------------------------------------------------------------------------- +// Constant and macro definitions +// ----------------------------------------------------------------------------- + +#ifdef USE_FULL_ASSERT + /******************************************************************************* + * Macro Name : assert + * Description : The assert macro is used for function's parameters check. + * It is used only if the library is compiled in DEBUG mode. + * Input : - expr: If expr is false, it calls assert_failed function + * which reports the name of the source file and the source + * line number of the call that failed. + * If expr is true, it returns no value. + * Return : None + *******************************************************************************/ + #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__)) + +/* Exported functions ------------------------------------------------------- */ + void assert_failed(uint8_t* file, uint32_t line); +#else + #define assert_param(expr) ((void)0) +#endif /* USE_FULL_ASSERT */ + +// ----------------------------------------------------------------------------- +// Type definitions. +// ----------------------------------------------------------------------------- + + + +// ----------------------------------------------------------------------------- +// Function declarations +// ----------------------------------------------------------------------------- + + + + +#endif /* LIBRARIES_STM32F10X_STDPERIPH_DRIVER_INC_STM32F10X_CONF_H_ */