#ifndef __STM32F10x_CONF_H #define __STM32F10x_CONF_H #ifdef USE_FULL_ASSERT #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__)) #ifdef __cplusplus extern "C" { #endif void assert_failed(uint8_t* file, uint32_t line); #ifdef __cplusplus } #endif #else #define assert_param(expr) ((void)0) #endif #endif