关于Keil4 function "assert_param" declared implicitly;assert_param(IS_GPIO_);和宏定义问题

本文详细介绍了在使用STM32与RealView MDK进行项目开发时如何正确配置USE_STDPERIPH_DRIVER及STM32F10X系列宏定义,以确保编译顺利进行并避免警告或错误。

一.关于STM32 MDK中USE_STDPERIPH_DRIVER问题

初学STM32,在RealView MDK 环境中使用STM32固件库建立工程时,初学者可能会遇到编译不通过的问题。出现如下警告或错误提示:

warning: #223-D: function "assert_param" declared implicitly;assert_param(IS_GPIO_ALL_PERIPH(GPIOx));

这时候我们需要在“Target Options”中的“C/C++”选项卡中如图1所示红框中添加USE_STDPERIPH_DRIVER、STM32F10X_HD。这样才能使编顺利通过。

                                                                                                     图-1

  我们知道,程序的执行是从“main.c”文件开始的,其中必须包含有头文件“stm32f10x.h”。我们打开“stm32f10x.h”,按下“Ctrl+F”键,查找USE_STDPERIPH_DRIVER,在“Find What”栏中输入“USE_STDPERIPH_DRIVER”。如图2所示。点击“Find Next”,出现“USE_STDPERIPH_DRIVER”对应的代码行,重复上边操作三次,第三次的时候我们能在第8296-8298行找到如图3所示代码段。

                                                                                                图2

                                                                                                图3

  这段代码的意思是,只有用预编译指令预定义了“USE_STDPERIPH_DRIVER”,才会将"stm32f10x_conf.h"包含进“stm32f10x.h”中,从而被"main.c"用到。这就解释了,为什么我们没有在“main.c”中包含"stm32f10x_conf.h",而在编译之后却被包含进了"main.c"中,出现如图4所示的情况。"stm32f10x_conf.h"文件相当于一个开关文件,如果要用到STM32固件库驱动标准外设,则外设驱动头文件是必不可少的,如“stm32f10x_gpio.h”。在"stm32f10x_conf.h"中我们通过代码#include "stm32f10x_gpio.h"来实现这个操作。

实际上,在v3.5的stm32标准库,已经有了以下的补充代码:

#if !defined (STM32F10X_LD) && !defined (STM32F10X_LD_VL) && !defined (STM32F10X_MD) && !defined (STM32F10X_MD_VL) && !defined (STM32F10X_HD) && !defined (STM32F10X_HD_VL) && !defined (STM32F10X_XL) && !defined (STM32F10X_CL)
 #error "Please select first the target STM32F10x device used in your application (in stm32f10x.h file)"
#endif

#if !defined  USE_STDPERIPH_DRIVER
/**
 * @brief Comment the line below if you will not use the peripherals drivers.
   In this case, these drivers will not be included and the application code will 
   be based on direct access to peripherals registers 
   */
#define USE_STDPERIPH_DRIVER  /*#define USE_STDPERIPH_DRIVER*/
#endif

这里我们就无需再宏定义了。

二. STM32F10X_LD,STM32F10X_MD,STM32F10X_HD,STM32F10X_CL宏定义的选择

 如果你使用stm32f10x_stdperiph_lib,会发现在stm32f10x.h文件会有一段关于宏选择的代码,如:

#if !defined (STM32F10X_LD) && !defined (STM32F10X_LD_VL) && !defined (STM32F10X_MD) && !defined (STM32F10X_MD_VL) && !defined (STM32F10X_HD) && !defined (STM32F10X_HD_VL) && !defined (STM32F10X_XL) && !defined (STM32F10X_CL) 
  /* #define STM32F10X_LD */     /*!< STM32F10X_LD: STM32 Low density devices */
  /* #define STM32F10X_LD_VL */  /*!< STM32F10X_LD_VL: STM32 Low density Value Line devices */  
#define STM32F10X_MD  /* #define STM32F10X_MD */     /*!< STM32F10X_MD: STM32 Medium density devices */
  /* #define STM32F10X_MD_VL */  /*!< STM32F10X_MD_VL: STM32 Medium density Value Line devices */  
  /* #define STM32F10X_HD */     /*!< STM32F10X_HD: STM32 High density devices */
  /* #define STM32F10X_HD_VL */  /*!< STM32F10X_HD_VL: STM32 High density value line devices */  
  /* #define STM32F10X_XL */     /*!< STM32F10X_XL: STM32 XL-density devices */
  /* #define STM32F10X_CL */     /*!< STM32F10X_CL: STM32 Connectivity line devices */
#endif

这里我们就有一个问题,我们应该选择哪个宏定义?这要根据你所用的设备来选。参考手册中给了如下:

 

这里告诉我们flash容量在16~32kbytes的是ld,64~128的是md,256~512的是Hd。如下表:

 

 

 

 

 

 

Rebuild started: Project: STM32_Car *** Using Compiler 'V5.06 update 7 (build 960)', folder: 'D:\Keil_v5\ARM\ARMCC\Bin' Rebuild target 'STM32F105RCT6' compiling main.c... assembling startup_stm32f10x_hd.s... compiling stm32f10x_it.c... compiling stm32f10x_can.c... ..\Library\src\stm32f10x_can.c(125): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(159): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(296): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_FILTER_NUMBER(CAN_FilterInitStruct->CAN_FilterNumber)); ..\Library\src\stm32f10x_can.c(431): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_BANKNUMBER(CAN_BankNumber)); ..\Library\src\stm32f10x_can.c(454): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(484): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(519): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(594): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(646): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(674): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(723): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(747): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(782): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(861): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(888): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(927): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(951): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(971): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(1006): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(1048): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(1147): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(1207): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c(1309): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); ..\Library\src\stm32f10x_can.c: 23 warnings, 0 errors compiling stm32f10x_crc.c... compiling system_stm32f10x.c... compiling core_cm3.c... compiling misc.c... ..\Library\src\misc.c(99): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_PRIORITY_GROUP(NVIC_PriorityGroup)); ..\Library\src\misc.c(117): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NVIC_InitStruct->NVIC_IRQChannelCmd)); ..\Library\src\misc.c(159): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_VECTTAB(NVIC_VectTab)); ..\Library\src\misc.c(178): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_LP(LowPowerMode)); ..\Library\src\misc.c(202): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SYSTICK_CLK_SOURCE(SysTick_CLKSource)); ..\Library\src\misc.c: 5 warnings, 0 errors compiling stm32f10x_bkp.c... ..\Library\src\stm32f10x_bkp.c(137): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_TAMPER_PIN_LEVEL(BKP_TamperPinLevel)); ..\Library\src\stm32f10x_bkp.c(150): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_bkp.c(163): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_bkp.c(184): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_RTC_OUTPUT_SOURCE(BKP_RTCOutputSource)); ..\Library\src\stm32f10x_bkp.c(205): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_CALIBRATION_VALUE(CalibrationValue)); ..\Library\src\stm32f10x_bkp.c(227): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_DR(BKP_DR)); ..\Library\src\stm32f10x_bkp.c(246): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_DR(BKP_DR)); ..\Library\src\stm32f10x_bkp.c: 7 warnings, 0 errors compiling stm32f10x_cec.c... ..\Library\src\stm32f10x_cec.c(140): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_BIT_TIMING_ERROR_MODE(CEC_InitStruct->CEC_BitTimingMode)); ..\Library\src\stm32f10x_cec.c(167): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_cec.c(189): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_cec.c(202): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_ADDRESS(CEC_OwnAddress)); ..\Library\src\stm32f10x_cec.c(216): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_PRESCALER(CEC_Prescaler)); ..\Library\src\stm32f10x_cec.c(265): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_cec.c(297): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_GET_FLAG(CEC_FLAG)); ..\Library\src\stm32f10x_cec.c(354): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_CLEAR_FLAG(CEC_FLAG)); ..\Library\src\stm32f10x_cec.c(378): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_GET_IT(CEC_IT)); ..\Library\src\stm32f10x_cec.c(413): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_GET_IT(CEC_IT)); ..\Library\src\stm32f10x_cec.c: 10 warnings, 0 errors compiling stm32f10x_dbgmcu.c... ..\Library\src\stm32f10x_dbgmcu.c(137): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DBGMCU_PERIPH(DBGMCU_Periph)); ..\Library\src\stm32f10x_dbgmcu.c: 1 warning, 0 errors compiling stm32f10x_dac.c... ..\Library\src\stm32f10x_dac.c(121): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_TRIGGER(DAC_InitStruct->DAC_Trigger)); ..\Library\src\stm32f10x_dac.c(176): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); ..\Library\src\stm32f10x_dac.c(236): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); ..\Library\src\stm32f10x_dac.c(263): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); ..\Library\src\stm32f10x_dac.c(287): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_dac.c(317): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); ..\Library\src\stm32f10x_dac.c(347): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_ALIGN(DAC_Align)); ..\Library\src\stm32f10x_dac.c(372): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_ALIGN(DAC_Align)); ..\Library\src\stm32f10x_dac.c(401): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_ALIGN(DAC_Align)); ..\Library\src\stm32f10x_dac.c(435): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); ..\Library\src\stm32f10x_dac.c: 10 warnings, 0 errors compiling stm32f10x_adc.c... ..\Library\src\stm32f10x_adc.c(182): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(223): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(302): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(327): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_DMA_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(357): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(382): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(396): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(420): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(434): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(460): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(485): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(514): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(539): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(594): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(689): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(711): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(737): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(763): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(803): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(827): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(852): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(877): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(934): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(998): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(1030): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(1057): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(1086): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(1111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(1149): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(1170): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_adc.c(1199): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(1231): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(1252): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c(1287): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); ..\Library\src\stm32f10x_adc.c: 34 warnings, 0 errors compiling stm32f10x_dma.c... ..\Library\src\stm32f10x_dma.c(111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); ..\Library\src\stm32f10x_dma.c(207): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); ..\Library\src\stm32f10x_dma.c(297): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); ..\Library\src\stm32f10x_dma.c(329): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); ..\Library\src\stm32f10x_dma.c(356): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); ..\Library\src\stm32f10x_dma.c(374): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); ..\Library\src\stm32f10x_dma.c(439): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_GET_FLAG(DMAy_FLAG)); ..\Library\src\stm32f10x_dma.c(526): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_CLEAR_FLAG(DMAy_FLAG)); ..\Library\src\stm32f10x_dma.c(601): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_GET_IT(DMAy_IT)); ..\Library\src\stm32f10x_dma.c(687): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_CLEAR_IT(DMAy_IT)); ..\Library\src\stm32f10x_dma.c: 10 warnings, 0 errors compiling stm32f10x_exti.c... ..\Library\src\stm32f10x_exti.c(106): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_MODE(EXTI_InitStruct->EXTI_Mode)); ..\Library\src\stm32f10x_exti.c(174): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); ..\Library\src\stm32f10x_exti.c(190): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GET_EXTI_LINE(EXTI_Line)); ..\Library\src\stm32f10x_exti.c(212): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); ..\Library\src\stm32f10x_exti.c(229): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GET_EXTI_LINE(EXTI_Line)); ..\Library\src\stm32f10x_exti.c(252): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); ..\Library\src\stm32f10x_exti.c: 6 warnings, 0 errors compiling stm32f10x_flash.c... ..\Library\src\stm32f10x_flash.c(259): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_LATENCY(FLASH_Latency)); ..\Library\src\stm32f10x_flash.c(284): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_HALFCYCLEACCESS_STATE(FLASH_HalfCycleAccess)); ..\Library\src\stm32f10x_flash.c(303): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_PREFETCHBUFFER_STATE(FLASH_PrefetchBuffer)); ..\Library\src\stm32f10x_flash.c(423): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_ADDRESS(Page_Address)); ..\Library\src\stm32f10x_flash.c(687): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_ADDRESS(Address)); ..\Library\src\stm32f10x_flash.c(862): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_ADDRESS(Address)); ..\Library\src\stm32f10x_flash.c(933): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_OB_DATA_ADDRESS(Address)); ..\Library\src\stm32f10x_flash.c(982): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_WRPROT_PAGE(FLASH_Pages)); ..\Library\src\stm32f10x_flash.c(1053): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_flash.c(1123): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_OB_IWDG_SOURCE(OB_IWDG)); ..\Library\src\stm32f10x_flash.c(1325): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_IT(FLASH_IT)); ..\Library\src\stm32f10x_flash.c(1402): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_GET_FLAG(FLASH_FLAG)) ; ..\Library\src\stm32f10x_flash.c(1462): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_CLEAR_FLAG(FLASH_FLAG)) ; ..\Library\src\stm32f10x_flash.c: 13 warnings, 0 errors compiling stm32f10x_gpio.c... ..\Library\src\stm32f10x_gpio.c(111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\Library\src\stm32f10x_gpio.c(178): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\Library\src\stm32f10x_gpio.c(286): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\Library\src\stm32f10x_gpio.c(308): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\Library\src\stm32f10x_gpio.c(324): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\Library\src\stm32f10x_gpio.c(346): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\Library\src\stm32f10x_gpio.c(361): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\Library\src\stm32f10x_gpio.c(377): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\Library\src\stm32f10x_gpio.c(397): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\Library\src\stm32f10x_gpio.c(420): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\Library\src\stm32f10x_gpio.c(437): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\Library\src\stm32f10x_gpio.c(466): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_EVENTOUT_PORT_SOURCE(GPIO_PortSource)); ..\Library\src\stm32f10x_gpio.c(486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_gpio.c(554): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_REMAP(GPIO_Remap)); ..\Library\src\stm32f10x_gpio.c(613): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_EXTI_PORT_SOURCE(GPIO_PortSource)); ..\Library\src\stm32f10x_gpio.c(632): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ETH_MEDIA_INTERFACE(GPIO_ETH_MediaInterface)); ..\Library\src\stm32f10x_gpio.c: 16 warnings, 0 errors compiling stm32f10x_fsmc.c... ..\Library\src\stm32f10x_fsmc.c(105): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NORSRAM_BANK(FSMC_Bank)); ..\Library\src\stm32f10x_fsmc.c(132): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NAND_BANK(FSMC_Bank)); ..\Library\src\stm32f10x_fsmc.c(179): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NORSRAM_BANK(FSMC_NORSRAMInitStruct->FSMC_Bank)); ..\Library\src\stm32f10x_fsmc.c(267): warning: #223-D: function "assert_param" declared implicitly assert_param( IS_FSMC_NAND_BANK(FSMC_NANDInitStruct->FSMC_Bank)); ..\Library\src\stm32f10x_fsmc.c(331): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_WAIT_FEATURE(FSMC_PCCARDInitStruct->FSMC_Waitfeature)); ..\Library\src\stm32f10x_fsmc.c(477): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NORSRAM_BANK(FSMC_Bank)); ..\Library\src\stm32f10x_fsmc.c(503): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NAND_BANK(FSMC_Bank)); ..\Library\src\stm32f10x_fsmc.c(540): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_fsmc.c(566): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NAND_BANK(FSMC_Bank)); ..\Library\src\stm32f10x_fsmc.c(639): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_IT_BANK(FSMC_Bank)); ..\Library\src\stm32f10x_fsmc.c(703): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_GETFLAG_BANK(FSMC_Bank)); ..\Library\src\stm32f10x_fsmc.c(750): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_GETFLAG_BANK(FSMC_Bank)); ..\Library\src\stm32f10x_fsmc.c(788): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_IT_BANK(FSMC_Bank)); ..\Library\src\stm32f10x_fsmc.c(836): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_IT_BANK(FSMC_Bank)); ..\Library\src\stm32f10x_fsmc.c: 14 warnings, 0 errors compiling stm32f10x_i2c.c... ..\Library\src\stm32f10x_i2c.c(165): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(198): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(325): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(349): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(373): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(397): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(421): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(445): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(470): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(495): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(519): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(548): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(573): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(586): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(604): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(641): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(661): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(699): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(727): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(751): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(782): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(806): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(828): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(843): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(867): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(893): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(1037): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(1084): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(1139): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(1216): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(1252): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c(1311): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); ..\Library\src\stm32f10x_i2c.c: 32 warnings, 0 errors compiling stm32f10x_iwdg.c... ..\Library\src\stm32f10x_iwdg.c(95): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_WRITE_ACCESS(IWDG_WriteAccess)); ..\Library\src\stm32f10x_iwdg.c(115): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_PRESCALER(IWDG_Prescaler)); ..\Library\src\stm32f10x_iwdg.c(128): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_RELOAD(Reload)); ..\Library\src\stm32f10x_iwdg.c(165): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_FLAG(IWDG_FLAG)); ..\Library\src\stm32f10x_iwdg.c: 4 warnings, 0 errors compiling stm32f10x_pwr.c... ..\Library\src\stm32f10x_pwr.c(127): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_pwr.c(140): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_pwr.c(162): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_PVD_LEVEL(PWR_PVDLevel)); ..\Library\src\stm32f10x_pwr.c(181): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_pwr.c(201): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_REGULATOR(PWR_Regulator)); ..\Library\src\stm32f10x_pwr.c(265): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_GET_FLAG(PWR_FLAG)); ..\Library\src\stm32f10x_pwr.c(290): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_CLEAR_FLAG(PWR_FLAG)); ..\Library\src\stm32f10x_pwr.c: 7 warnings, 0 errors compiling stm32f10x_rcc.c... ..\Library\src\stm32f10x_rcc.c(273): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_HSE(RCC_HSE)); ..\Library\src\stm32f10x_rcc.c(338): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_CALIBRATION_VALUE(HSICalibrationValue)); ..\Library\src\stm32f10x_rcc.c(357): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_rcc.c(383): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PLL_SOURCE(RCC_PLLSource)); ..\Library\src\stm32f10x_rcc.c(404): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_rcc.c(431): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PREDIV1_SOURCE(RCC_PREDIV1_Source)); ..\Library\src\stm32f10x_rcc.c(459): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PREDIV2(RCC_PREDIV2_Div)); ..\Library\src\stm32f10x_rcc.c(484): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PLL2_MUL(RCC_PLL2Mul)); ..\Library\src\stm32f10x_rcc.c(508): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_rcc.c(528): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PLL3_MUL(RCC_PLL3Mul)); ..\Library\src\stm32f10x_rcc.c(550): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_rcc.c(568): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_SYSCLK_SOURCE(RCC_SYSCLKSource)); ..\Library\src\stm32f10x_rcc.c(612): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_HCLK(RCC_SYSCLK)); ..\Library\src\stm32f10x_rcc.c(638): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PCLK(RCC_HCLK)); ..\Library\src\stm32f10x_rcc.c(664): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PCLK(RCC_HCLK)); ..\Library\src\stm32f10x_rcc.c(703): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_IT(RCC_IT)); ..\Library\src\stm32f10x_rcc.c(749): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_OTGFSCLK_SOURCE(RCC_OTGFSCLKSource)); ..\Library\src\stm32f10x_rcc.c(770): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_ADCCLK(RCC_PCLK2)); ..\Library\src\stm32f10x_rcc.c(795): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_I2S2CLK_SOURCE(RCC_I2S2CLKSource)); ..\Library\src\stm32f10x_rcc.c(814): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_I2S3CLK_SOURCE(RCC_I2S3CLKSource)); ..\Library\src\stm32f10x_rcc.c(832): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_LSE(RCC_LSE)); ..\Library\src\stm32f10x_rcc.c(865): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_rcc.c(882): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_RTCCLK_SOURCE(RCC_RTCCLKSource)); ..\Library\src\stm32f10x_rcc.c(896): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_rcc.c(1067): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_AHB_PERIPH(RCC_AHBPeriph)); ..\Library\src\stm32f10x_rcc.c(1098): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB2_PERIPH(RCC_APB2Periph)); ..\Library\src\stm32f10x_rcc.c(1129): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB1_PERIPH(RCC_APB1Periph)); ..\Library\src\stm32f10x_rcc.c(1156): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_AHB_PERIPH_RESET(RCC_AHBPeriph)); ..\Library\src\stm32f10x_rcc.c(1188): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB2_PERIPH(RCC_APB2Periph)); ..\Library\src\stm32f10x_rcc.c(1219): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB1_PERIPH(RCC_APB1Periph)); ..\Library\src\stm32f10x_rcc.c(1240): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_rcc.c(1253): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_rcc.c(1285): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_MCO(RCC_MCO)); ..\Library\src\stm32f10x_rcc.c(1332): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_FLAG(RCC_FLAG)); ..\Library\src\stm32f10x_rcc.c(1406): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_GET_IT(RCC_IT)); ..\Library\src\stm32f10x_rcc.c(1451): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_CLEAR_IT(RCC_IT)); ..\Library\src\stm32f10x_rcc.c: 36 warnings, 0 errors compiling stm32f10x_rtc.c... ..\Library\src\stm32f10x_rtc.c(93): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_IT(RTC_IT)); ..\Library\src\stm32f10x_rtc.c(163): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_PRESCALER(PrescalerValue)); ..\Library\src\stm32f10x_rtc.c(249): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_GET_FLAG(RTC_FLAG)); ..\Library\src\stm32f10x_rtc.c(276): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_CLEAR_FLAG(RTC_FLAG)); ..\Library\src\stm32f10x_rtc.c(295): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_GET_IT(RTC_IT)); ..\Library\src\stm32f10x_rtc.c(321): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_IT(RTC_IT)); ..\Library\src\stm32f10x_rtc.c: 6 warnings, 0 errors compiling stm32f10x_sdio.c... ..\Library\src\stm32f10x_sdio.c(186): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CLOCK_EDGE(SDIO_InitStruct->SDIO_ClockEdge)); ..\Library\src\stm32f10x_sdio.c(238): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_sdio.c(254): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_POWER_STATE(SDIO_PowerState)); ..\Library\src\stm32f10x_sdio.c(310): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_IT(SDIO_IT)); ..\Library\src\stm32f10x_sdio.c(334): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_sdio.c(351): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CMD_INDEX(SDIO_CmdInitStruct->SDIO_CmdIndex)); ..\Library\src\stm32f10x_sdio.c(417): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_RESP(SDIO_RESP)); ..\Library\src\stm32f10x_sdio.c(436): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_DATA_LENGTH(SDIO_DataInitStruct->SDIO_DataLength)); ..\Library\src\stm32f10x_sdio.c(532): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_sdio.c(546): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_sdio.c(562): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_READWAIT_MODE(SDIO_ReadWaitMode)); ..\Library\src\stm32f10x_sdio.c(576): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_sdio.c(590): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_sdio.c(604): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_sdio.c(617): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_sdio.c(630): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\Library\src\stm32f10x_sdio.c(671): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_FLAG(SDIO_FLAG)); ..\Library\src\stm32f10x_sdio.c(707): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CLEAR_FLAG(SDIO_FLAG)); ..\Library\src\stm32f10x_sdio.c(748): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_GET_IT(SDIO_IT)); ..\Library\src\stm32f10x_sdio.c(782): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CLEAR_IT(SDIO_IT)); ..\Library\src\stm32f10x_sdio.c: 20 warnings, 0 errors compiling stm32f10x_spi.c... ..\Library\src\stm32f10x_spi.c(122): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(163): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(227): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_23_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(430): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(454): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_23_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(524): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(550): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(566): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(584): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(608): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(634): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(650): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(666): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(693): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(717): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(735): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(770): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(807): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(835): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c(887): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); ..\Library\src\stm32f10x_spi.c: 21 warnings, 0 errors compiling stm32f10x_usart.c... ..\Library\src\stm32f10x_usart.c(133): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(184): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(306): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(354): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(393): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(451): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(479): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(502): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(521): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(550): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(569): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(595): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(612): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(628): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(644): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(664): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(683): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(708): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(734): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(765): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(792): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(821): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(840): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(878): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(926): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(961): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c(1034): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); ..\Library\src\stm32f10x_usart.c: 27 warnings, 0 errors compiling stm32f10x_tim.c... ..\Library\src\stm32f10x_tim.c(125): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(231): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(284): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(367): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(449): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(528): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(590): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_CHANNEL(TIM_ICInitStruct->TIM_Channel)); ..\Library\src\stm32f10x_tim.c(659): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(715): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(809): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(834): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(875): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(912): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(940): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST4_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(967): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST9_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(992): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1011): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1039): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1080): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1121): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1153): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1179): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1203): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1233): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1272): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST5_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1319): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1343): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1367): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1391): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1412): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1436): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1461): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST4_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST5_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1513): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1538): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1562): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1586): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1610): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1636): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1661): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1686): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1711): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1737): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1761): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1785): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1809): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1832): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1856): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1879): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST1_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1903): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1927): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST1_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1951): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(1979): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2009): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2051): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2095): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2123): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2147): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2173): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2205): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST7_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2228): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2249): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2267): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2281): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2295): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2309): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2323): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2337): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2356): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2378): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2400): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2422): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2444): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2460): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2473): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2499): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2512): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2525): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2560): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2603): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2637): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c(2679): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\Library\src\stm32f10x_tim.c: 83 warnings, 0 errors compiling stm32f10x_wwdg.c... ..\Library\src\stm32f10x_wwdg.c(122): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_PRESCALER(WWDG_Prescaler)); ..\Library\src\stm32f10x_wwdg.c(142): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_WINDOW_VALUE(WindowValue)); ..\Library\src\stm32f10x_wwdg.c(173): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_COUNTER(Counter)); ..\Library\src\stm32f10x_wwdg.c(188): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_COUNTER(Counter)); ..\Library\src\stm32f10x_wwdg.c: 4 warnings, 0 errors linking... ..\Output\STM32_Car.axf: Error: L6218E: Undefined symbol assert_param (referred from misc.o). Not enough information to list image symbols. Not enough information to list load addresses in the image map. Finished: 2 information, 0 warning and 1 error messages. "..\Output\STM32_Car.axf" - 1 Error(s), 389 Warning(s). Target not created. Build Time Elapsed: 00:00:03
最新发布
12-02
Build started: Project: LCD1602 *** Using Compiler 'V5.06 update 6 (build 750)', folder: 'C:\迅雷下载\keil ruanj\ARM\ARMCC\Bin' Build target 'Target 1' compiling stm32f10x_dbgmcu.c... Library\src\stm32f10x_dbgmcu.c(137): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DBGMCU_PERIPH(DBGMCU_Periph)); Library\src\stm32f10x_dbgmcu.c: 1 warning, 0 errors compiling stm32f10x_cec.c... Library\src\stm32f10x_cec.c(140): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_BIT_TIMING_ERROR_MODE(CEC_InitStruct->CEC_BitTimingMode)); Library\src\stm32f10x_cec.c(167): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_cec.c(189): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_cec.c(202): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_ADDRESS(CEC_OwnAddress)); Library\src\stm32f10x_cec.c(216): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_PRESCALER(CEC_Prescaler)); Library\src\stm32f10x_cec.c(265): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_cec.c(297): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_GET_FLAG(CEC_FLAG)); Library\src\stm32f10x_cec.c(354): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_CLEAR_FLAG(CEC_FLAG)); Library\src\stm32f10x_cec.c(378): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_GET_IT(CEC_IT)); Library\src\stm32f10x_cec.c(413): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_GET_IT(CEC_IT)); Library\src\stm32f10x_cec.c: 10 warnings, 0 errors compiling core_cm3.c... compiling stm32f10x_bkp.c... Library\src\stm32f10x_bkp.c(137): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_TAMPER_PIN_LEVEL(BKP_TamperPinLevel)); Library\src\stm32f10x_bkp.c(150): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_bkp.c(163): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_bkp.c(184): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_RTC_OUTPUT_SOURCE(BKP_RTCOutputSource)); Library\src\stm32f10x_bkp.c(205): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_CALIBRATION_VALUE(CalibrationValue)); Library\src\stm32f10x_bkp.c(227): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_DR(BKP_DR)); Library\src\stm32f10x_bkp.c(246): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_DR(BKP_DR)); Library\src\stm32f10x_bkp.c: 7 warnings, 0 errors compiling system_stm32f10x.c... compiling stm32f10x_crc.c... compiling stm32f10x_exti.c... Library\src\stm32f10x_exti.c(106): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_MODE(EXTI_InitStruct->EXTI_Mode)); Library\src\stm32f10x_exti.c(174): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c(190): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GET_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c(212): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c(229): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GET_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c(252): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c: 6 warnings, 0 errors compiling misc.c... Library\src\misc.c(99): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_PRIORITY_GROUP(NVIC_PriorityGroup)); Library\src\misc.c(117): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NVIC_InitStruct->NVIC_IRQChannelCmd)); Library\src\misc.c(159): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_VECTTAB(NVIC_VectTab)); Library\src\misc.c(178): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_LP(LowPowerMode)); Library\src\misc.c(202): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SYSTICK_CLK_SOURCE(SysTick_CLKSource)); Library\src\misc.c: 5 warnings, 0 errors compiling stm32f10x_dma.c... Library\src\stm32f10x_dma.c(111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(207): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(297): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(329): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(356): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(374): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(439): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_GET_FLAG(DMAy_FLAG)); Library\src\stm32f10x_dma.c(526): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_CLEAR_FLAG(DMAy_FLAG)); Library\src\stm32f10x_dma.c(601): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_GET_IT(DMAy_IT)); Library\src\stm32f10x_dma.c(687): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_CLEAR_IT(DMAy_IT)); Library\src\stm32f10x_dma.c: 10 warnings, 0 errors compiling stm32f10x_flash.c... Library\src\stm32f10x_flash.c(259): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_LATENCY(FLASH_Latency)); Library\src\stm32f10x_flash.c(284): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_HALFCYCLEACCESS_STATE(FLASH_HalfCycleAccess)); Library\src\stm32f10x_flash.c(303): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_PREFETCHBUFFER_STATE(FLASH_PrefetchBuffer)); Library\src\stm32f10x_flash.c(423): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_ADDRESS(Page_Address)); Library\src\stm32f10x_flash.c(687): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_ADDRESS(Address)); Library\src\stm32f10x_flash.c(862): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_ADDRESS(Address)); Library\src\stm32f10x_flash.c(933): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_OB_DATA_ADDRESS(Address)); Library\src\stm32f10x_flash.c(982): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_WRPROT_PAGE(FLASH_Pages)); Library\src\stm32f10x_flash.c(1053): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_flash.c(1123): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_OB_IWDG_SOURCE(OB_IWDG)); Library\src\stm32f10x_flash.c(1325): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_IT(FLASH_IT)); Library\src\stm32f10x_flash.c(1402): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_GET_FLAG(FLASH_FLAG)) ; Library\src\stm32f10x_flash.c(1462): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_CLEAR_FLAG(FLASH_FLAG)) ; Library\src\stm32f10x_flash.c: 13 warnings, 0 errors compiling stm32f10x_fsmc.c... Library\src\stm32f10x_fsmc.c(105): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NORSRAM_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(132): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NAND_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(179): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NORSRAM_BANK(FSMC_NORSRAMInitStruct->FSMC_Bank)); Library\src\stm32f10x_fsmc.c(267): warning: #223-D: function "assert_param" declared implicitly assert_param( IS_FSMC_NAND_BANK(FSMC_NANDInitStruct->FSMC_Bank)); Library\src\stm32f10x_fsmc.c(331): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_WAIT_FEATURE(FSMC_PCCARDInitStruct->FSMC_Waitfeature)); Library\src\stm32f10x_fsmc.c(477): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NORSRAM_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(503): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NAND_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(540): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_fsmc.c(566): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NAND_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(639): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_IT_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(703): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_GETFLAG_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(750): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_GETFLAG_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(788): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_IT_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(836): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_IT_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c: 14 warnings, 0 errors compiling stm32f10x_dac.c... Library\src\stm32f10x_dac.c(121): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_TRIGGER(DAC_InitStruct->DAC_Trigger)); Library\src\stm32f10x_dac.c(176): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c(236): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c(263): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c(287): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_dac.c(317): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c(347): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_ALIGN(DAC_Align)); Library\src\stm32f10x_dac.c(372): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_ALIGN(DAC_Align)); Library\src\stm32f10x_dac.c(401): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_ALIGN(DAC_Align)); Library\src\stm32f10x_dac.c(435): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c: 10 warnings, 0 errors compiling stm32f10x_gpio.c... Library\src\stm32f10x_gpio.c(111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(178): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(286): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(308): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(324): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(346): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(361): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(377): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(397): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(420): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(437): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(466): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_EVENTOUT_PORT_SOURCE(GPIO_PortSource)); Library\src\stm32f10x_gpio.c(486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_gpio.c(554): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_REMAP(GPIO_Remap)); Library\src\stm32f10x_gpio.c(613): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_EXTI_PORT_SOURCE(GPIO_PortSource)); Library\src\stm32f10x_gpio.c(632): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ETH_MEDIA_INTERFACE(GPIO_ETH_MediaInterface)); Library\src\stm32f10x_gpio.c: 16 warnings, 0 errors compiling stm32f10x_adc.c... Library\src\stm32f10x_adc.c(182): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(223): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(302): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(327): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_DMA_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(357): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(382): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(396): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(420): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(434): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(460): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(485): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(514): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(539): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(594): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(689): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(711): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(737): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(763): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(803): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(827): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(852): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(877): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(934): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(998): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1030): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1057): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1086): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1149): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1170): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_adc.c(1199): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1231): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1252): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1287): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c: 34 warnings, 0 errors compiling stm32f10x_can.c... Library\src\stm32f10x_can.c(125): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(159): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(296): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_FILTER_NUMBER(CAN_FilterInitStruct->CAN_FilterNumber)); Library\src\stm32f10x_can.c(431): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_BANKNUMBER(CAN_BankNumber)); Library\src\stm32f10x_can.c(454): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(484): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(519): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(594): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(646): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(674): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(723): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(747): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(782): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(861): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(888): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(927): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(951): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(971): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1006): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1048): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1147): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1207): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1309): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c: 23 warnings, 0 errors compiling stm32f10x_i2c.c... Library\src\stm32f10x_i2c.c(165): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(198): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(325): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(349): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(373): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(397): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(421): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(445): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(470): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(495): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(519): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(548): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(573): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(586): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(604): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(641): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(661): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(699): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(727): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(751): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(782): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(806): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(828): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(843): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(867): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(893): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1037): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1084): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1139): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1216): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1252): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1311): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c: 32 warnings, 0 errors compiling stm32f10x_pwr.c... Library\src\stm32f10x_pwr.c(127): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_pwr.c(140): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_pwr.c(162): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_PVD_LEVEL(PWR_PVDLevel)); Library\src\stm32f10x_pwr.c(181): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_pwr.c(201): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_REGULATOR(PWR_Regulator)); Library\src\stm32f10x_pwr.c(265): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_GET_FLAG(PWR_FLAG)); Library\src\stm32f10x_pwr.c(290): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_CLEAR_FLAG(PWR_FLAG)); Library\src\stm32f10x_pwr.c: 7 warnings, 0 errors compiling stm32f10x_iwdg.c... Library\src\stm32f10x_iwdg.c(95): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_WRITE_ACCESS(IWDG_WriteAccess)); Library\src\stm32f10x_iwdg.c(115): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_PRESCALER(IWDG_Prescaler)); Library\src\stm32f10x_iwdg.c(128): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_RELOAD(Reload)); Library\src\stm32f10x_iwdg.c(165): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_FLAG(IWDG_FLAG)); Library\src\stm32f10x_iwdg.c: 4 warnings, 0 errors compiling stm32f10x_rtc.c... Library\src\stm32f10x_rtc.c(93): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_IT(RTC_IT)); Library\src\stm32f10x_rtc.c(163): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_PRESCALER(PrescalerValue)); Library\src\stm32f10x_rtc.c(249): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_GET_FLAG(RTC_FLAG)); Library\src\stm32f10x_rtc.c(276): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_CLEAR_FLAG(RTC_FLAG)); Library\src\stm32f10x_rtc.c(295): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_GET_IT(RTC_IT)); Library\src\stm32f10x_rtc.c(321): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_IT(RTC_IT)); Library\src\stm32f10x_rtc.c: 6 warnings, 0 errors compiling stm32f10x_spi.c... Library\src\stm32f10x_spi.c(122): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(163): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(227): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_23_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(430): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(454): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_23_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(524): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(550): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(566): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(584): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(608): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(634): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(650): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(666): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(693): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(717): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(735): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(770): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(807): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(835): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(887): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c: 21 warnings, 0 errors compiling stm32f10x_rcc.c... Library\src\stm32f10x_rcc.c(273): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_HSE(RCC_HSE)); Library\src\stm32f10x_rcc.c(338): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_CALIBRATION_VALUE(HSICalibrationValue)); Library\src\stm32f10x_rcc.c(357): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(383): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PLL_SOURCE(RCC_PLLSource)); Library\src\stm32f10x_rcc.c(404): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(568): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_SYSCLK_SOURCE(RCC_SYSCLKSource)); Library\src\stm32f10x_rcc.c(612): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_HCLK(RCC_SYSCLK)); Library\src\stm32f10x_rcc.c(638): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PCLK(RCC_HCLK)); Library\src\stm32f10x_rcc.c(664): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PCLK(RCC_HCLK)); Library\src\stm32f10x_rcc.c(703): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_IT(RCC_IT)); Library\src\stm32f10x_rcc.c(731): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_USBCLK_SOURCE(RCC_USBCLKSource)); Library\src\stm32f10x_rcc.c(770): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_ADCCLK(RCC_PCLK2)); Library\src\stm32f10x_rcc.c(832): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_LSE(RCC_LSE)); Library\src\stm32f10x_rcc.c(865): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(882): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_RTCCLK_SOURCE(RCC_RTCCLKSource)); Library\src\stm32f10x_rcc.c(896): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(1067): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_AHB_PERIPH(RCC_AHBPeriph)); Library\src\stm32f10x_rcc.c(1098): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB2_PERIPH(RCC_APB2Periph)); Library\src\stm32f10x_rcc.c(1129): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB1_PERIPH(RCC_APB1Periph)); Library\src\stm32f10x_rcc.c(1188): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB2_PERIPH(RCC_APB2Periph)); Library\src\stm32f10x_rcc.c(1219): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB1_PERIPH(RCC_APB1Periph)); Library\src\stm32f10x_rcc.c(1240): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(1253): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(1285): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_MCO(RCC_MCO)); Library\src\stm32f10x_rcc.c(1332): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_FLAG(RCC_FLAG)); Library\src\stm32f10x_rcc.c(1406): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_GET_IT(RCC_IT)); Library\src\stm32f10x_rcc.c(1451): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_CLEAR_IT(RCC_IT)); Library\src\stm32f10x_rcc.c: 27 warnings, 0 errors compiling stm32f10x_sdio.c... Library\src\stm32f10x_sdio.c(186): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CLOCK_EDGE(SDIO_InitStruct->SDIO_ClockEdge)); Library\src\stm32f10x_sdio.c(238): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(254): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_POWER_STATE(SDIO_PowerState)); Library\src\stm32f10x_sdio.c(310): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_IT(SDIO_IT)); Library\src\stm32f10x_sdio.c(334): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(351): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CMD_INDEX(SDIO_CmdInitStruct->SDIO_CmdIndex)); Library\src\stm32f10x_sdio.c(417): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_RESP(SDIO_RESP)); Library\src\stm32f10x_sdio.c(436): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_DATA_LENGTH(SDIO_DataInitStruct->SDIO_DataLength)); Library\src\stm32f10x_sdio.c(532): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(546): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(562): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_READWAIT_MODE(SDIO_ReadWaitMode)); Library\src\stm32f10x_sdio.c(576): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(590): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(604): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(617): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(630): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(671): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_FLAG(SDIO_FLAG)); Library\src\stm32f10x_sdio.c(707): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CLEAR_FLAG(SDIO_FLAG)); Library\src\stm32f10x_sdio.c(748): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_GET_IT(SDIO_IT)); Library\src\stm32f10x_sdio.c(782): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CLEAR_IT(SDIO_IT)); Library\src\stm32f10x_sdio.c: 20 warnings, 0 errors assembling startup_stm32f10x_md.s... compiling stm32f10x_wwdg.c... Library\src\stm32f10x_wwdg.c(122): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_PRESCALER(WWDG_Prescaler)); Library\src\stm32f10x_wwdg.c(142): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_WINDOW_VALUE(WindowValue)); Library\src\stm32f10x_wwdg.c(173): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_COUNTER(Counter)); Library\src\stm32f10x_wwdg.c(188): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_COUNTER(Counter)); Library\src\stm32f10x_wwdg.c: 4 warnings, 0 errors compiling stm32f10x_usart.c... Library\src\stm32f10x_usart.c(133): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(184): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(306): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(354): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(393): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(451): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(479): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(502): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(521): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(550): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(569): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(595): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(612): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(628): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(644): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(664): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(683): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(708): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(734): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(765): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(792): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(821): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(840): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(878): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(926): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(961): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(1034): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c: 27 warnings, 0 errors compiling i2c_lcd.c... .\Library\inc\i2c_lcd.h(1): error: #3: #include file ".\Library\inc\i2c_lcd.h" includes itself #include "i2c_lcd.h" User\i2c_lcd.c: 0 warnings, 1 error compiling i2c.c... User\i2c.c(2): error: #5: cannot open source input file "delay.h": No such file or directory #include "delay.h" // 需要实现微秒级延时函数 User\i2c.c: 0 warnings, 1 error compiling stm32f10x_tim.c... Library\src\stm32f10x_tim.c(125): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(231): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(284): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(367): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(449): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(528): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(590): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_CHANNEL(TIM_ICInitStruct->TIM_Channel)); Library\src\stm32f10x_tim.c(659): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(715): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(809): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(834): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(875): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(912): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(940): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST4_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(967): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST9_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(992): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1011): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1039): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1080): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1121): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1153): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1179): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1203): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1233): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1272): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST5_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1319): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1343): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1367): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1391): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1412): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1436): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1461): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST4_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST5_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1513): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1538): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1562): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1586): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1610): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1636): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1661): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1686): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1711): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1737): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1761): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1785): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1809): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1832): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1856): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1879): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST1_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1903): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1927): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST1_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1951): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1979): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2009): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2051): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2095): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2123): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2147): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2173): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2205): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST7_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2228): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2249): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2267): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2281): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2295): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2309): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2323): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2337): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2356): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2378): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2400): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2422): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2444): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2460): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2473): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2499): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2512): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2525): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2560): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2603): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2637): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2679): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c: 83 warnings, 0 errors compiling main.c... .\Library\inc\i2c_lcd.h(1): error: #3: #include file ".\Library\inc\i2c_lcd.h" includes itself #include "i2c_lcd.h" User\main.c: 0 warnings, 1 error compiling stm32f10x_it.c... ".\Objects\LCD1602.axf" - 3 Error(s), 380 Warning(s). Target not created. Build Time Elapsed: 00:00:04
08-25
Build started: Project: iSO-STM32 *** Using Compiler 'V5.06 update 6 (build 750)', folder: 'C:\Keil_v5\ARM\ARMCC\Bin' Build target '代码模板' compiling main.c... ..\..\User\main.c(3): error: #5: cannot open source input file "lcd.h": No such file or directory #include "lcd.h" ..\..\User\main.c: 0 warnings, 1 error compiling system_stm32f10x.c... compiling misc.c... ..\..\Libraries\FWlib\src\misc.c(99): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_PRIORITY_GROUP(NVIC_PriorityGroup)); ..\..\Libraries\FWlib\src\misc.c(117): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NVIC_InitStruct->NVIC_IRQChannelCmd)); ..\..\Libraries\FWlib\src\misc.c(159): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_VECTTAB(NVIC_VectTab)); ..\..\Libraries\FWlib\src\misc.c(178): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_LP(LowPowerMode)); ..\..\Libraries\FWlib\src\misc.c(202): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SYSTICK_CLK_SOURCE(SysTick_CLKSource)); ..\..\Libraries\FWlib\src\misc.c: 5 warnings, 0 errors compiling stm32f10x_rcc.c... ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(273): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_HSE(RCC_HSE)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(338): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_CALIBRATION_VALUE(HSICalibrationValue)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(357): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(383): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PLL_SOURCE(RCC_PLLSource)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(404): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(568): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_SYSCLK_SOURCE(RCC_SYSCLKSource)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(612): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_HCLK(RCC_SYSCLK)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(638): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PCLK(RCC_HCLK)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(664): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PCLK(RCC_HCLK)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(703): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_IT(RCC_IT)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(731): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_USBCLK_SOURCE(RCC_USBCLKSource)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(770): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_ADCCLK(RCC_PCLK2)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(832): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_LSE(RCC_LSE)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(865): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(882): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_RTCCLK_SOURCE(RCC_RTCCLKSource)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(896): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(1067): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_AHB_PERIPH(RCC_AHBPeriph)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(1098): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB2_PERIPH(RCC_APB2Periph)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(1129): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB1_PERIPH(RCC_APB1Periph)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(1188): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB2_PERIPH(RCC_APB2Periph)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(1219): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB1_PERIPH(RCC_APB1Periph)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(1240): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(1253): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(1285): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_MCO(RCC_MCO)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(1332): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_FLAG(RCC_FLAG)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(1406): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_GET_IT(RCC_IT)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c(1451): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_CLEAR_IT(RCC_IT)); ..\..\Libraries\FWlib\src\stm32f10x_rcc.c: 27 warnings, 0 errors compiling stm32f10x_gpio.c... ..\..\Libraries\src\stm32f10x_gpio.c(111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\src\stm32f10x_gpio.c(178): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\src\stm32f10x_gpio.c(286): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\src\stm32f10x_gpio.c(308): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\src\stm32f10x_gpio.c(324): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\src\stm32f10x_gpio.c(346): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\src\stm32f10x_gpio.c(361): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\src\stm32f10x_gpio.c(377): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\src\stm32f10x_gpio.c(397): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\src\stm32f10x_gpio.c(420): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\src\stm32f10x_gpio.c(437): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\src\stm32f10x_gpio.c(466): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_EVENTOUT_PORT_SOURCE(GPIO_PortSource)); ..\..\Libraries\src\stm32f10x_gpio.c(486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\..\Libraries\src\stm32f10x_gpio.c(554): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_REMAP(GPIO_Remap)); ..\..\Libraries\src\stm32f10x_gpio.c(613): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_EXTI_PORT_SOURCE(GPIO_PortSource)); ..\..\Libraries\src\stm32f10x_gpio.c(632): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ETH_MEDIA_INTERFACE(GPIO_ETH_MediaInterface)); ..\..\Libraries\src\stm32f10x_gpio.c: 16 warnings, 0 errors compiling stm32f10x_rcc.c... ..\..\Libraries\src\stm32f10x_rcc.c(273): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_HSE(RCC_HSE)); ..\..\Libraries\src\stm32f10x_rcc.c(338): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_CALIBRATION_VALUE(HSICalibrationValue)); ..\..\Libraries\src\stm32f10x_rcc.c(357): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\..\Libraries\src\stm32f10x_rcc.c(383): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PLL_SOURCE(RCC_PLLSource)); ..\..\Libraries\src\stm32f10x_rcc.c(404): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\..\Libraries\src\stm32f10x_rcc.c(568): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_SYSCLK_SOURCE(RCC_SYSCLKSource)); ..\..\Libraries\src\stm32f10x_rcc.c(612): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_HCLK(RCC_SYSCLK)); ..\..\Libraries\src\stm32f10x_rcc.c(638): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PCLK(RCC_HCLK)); ..\..\Libraries\src\stm32f10x_rcc.c(664): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PCLK(RCC_HCLK)); ..\..\Libraries\src\stm32f10x_rcc.c(703): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_IT(RCC_IT)); ..\..\Libraries\src\stm32f10x_rcc.c(731): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_USBCLK_SOURCE(RCC_USBCLKSource)); ..\..\Libraries\src\stm32f10x_rcc.c(770): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_ADCCLK(RCC_PCLK2)); ..\..\Libraries\src\stm32f10x_rcc.c(832): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_LSE(RCC_LSE)); ..\..\Libraries\src\stm32f10x_rcc.c(865): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\..\Libraries\src\stm32f10x_rcc.c(882): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_RTCCLK_SOURCE(RCC_RTCCLKSource)); ..\..\Libraries\src\stm32f10x_rcc.c(896): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\..\Libraries\src\stm32f10x_rcc.c(1067): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_AHB_PERIPH(RCC_AHBPeriph)); ..\..\Libraries\src\stm32f10x_rcc.c(1098): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB2_PERIPH(RCC_APB2Periph)); ..\..\Libraries\src\stm32f10x_rcc.c(1129): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB1_PERIPH(RCC_APB1Periph)); ..\..\Libraries\src\stm32f10x_rcc.c(1188): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB2_PERIPH(RCC_APB2Periph)); ..\..\Libraries\src\stm32f10x_rcc.c(1219): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB1_PERIPH(RCC_APB1Periph)); ..\..\Libraries\src\stm32f10x_rcc.c(1240): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\..\Libraries\src\stm32f10x_rcc.c(1253): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\..\Libraries\src\stm32f10x_rcc.c(1285): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_MCO(RCC_MCO)); ..\..\Libraries\src\stm32f10x_rcc.c(1332): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_FLAG(RCC_FLAG)); ..\..\Libraries\src\stm32f10x_rcc.c(1406): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_GET_IT(RCC_IT)); ..\..\Libraries\src\stm32f10x_rcc.c(1451): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_CLEAR_IT(RCC_IT)); ..\..\Libraries\src\stm32f10x_rcc.c: 27 warnings, 0 errors compiling stm32f10x_gpio.c... ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(178): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(286): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(308): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(324): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(346): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(361): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(377): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(397): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(420): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(437): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(466): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_EVENTOUT_PORT_SOURCE(GPIO_PortSource)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(554): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_REMAP(GPIO_Remap)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(613): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_EXTI_PORT_SOURCE(GPIO_PortSource)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c(632): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ETH_MEDIA_INTERFACE(GPIO_ETH_MediaInterface)); ..\..\Libraries\FWlib\src\stm32f10x_gpio.c: 16 warnings, 0 errors compiling core_cm3.c... compiling stm32f10x_tim.c... ..\..\Libraries\src\stm32f10x_tim.c(125): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(231): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(284): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(367): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(449): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(528): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(590): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_CHANNEL(TIM_ICInitStruct->TIM_Channel)); ..\..\Libraries\src\stm32f10x_tim.c(659): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(715): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(809): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(834): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(875): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(912): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(940): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST4_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(967): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST9_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(992): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1011): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1039): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1080): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1121): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1153): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1179): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1203): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1233): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1272): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST5_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1319): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1343): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1367): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1391): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1412): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1436): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1461): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST4_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST5_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1513): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1538): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1562): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1586): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1610): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1636): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1661): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1686): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1711): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1737): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1761): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1785): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1809): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1832): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1856): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1879): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST1_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1903): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1927): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST1_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1951): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(1979): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2009): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2051): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2095): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2123): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2147): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2173): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2205): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST7_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2228): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2249): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2267): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2281): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2295): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2309): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2323): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2337): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2356): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2378): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2400): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2422): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2444): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2460): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2473): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2499): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2512): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2525): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2560): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2603): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2637): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c(2679): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); ..\..\Libraries\src\stm32f10x_tim.c: 83 warnings, 0 errors "..\..\Output\Hex_ZH.axf" - 1 Error(s), 174 Warning(s). Target not created. Build Time Elapsed: 00:00:02
05-31
Build started: Project: Fire_Alarm *** Using Compiler 'V5.06 update 6 (build 750)', folder: 'C:\迅雷下载\keil ruanj\ARM\ARMCC\Bin' Build target 'Target 1' compiling stm32f10x_cec.c... Library\src\stm32f10x_cec.c(140): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_BIT_TIMING_ERROR_MODE(CEC_InitStruct->CEC_BitTimingMode)); Library\src\stm32f10x_cec.c(167): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_cec.c(189): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_cec.c(202): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_ADDRESS(CEC_OwnAddress)); Library\src\stm32f10x_cec.c(216): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_PRESCALER(CEC_Prescaler)); Library\src\stm32f10x_cec.c(265): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_cec.c(297): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_GET_FLAG(CEC_FLAG)); Library\src\stm32f10x_cec.c(354): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_CLEAR_FLAG(CEC_FLAG)); Library\src\stm32f10x_cec.c(378): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_GET_IT(CEC_IT)); Library\src\stm32f10x_cec.c(413): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_GET_IT(CEC_IT)); Library\src\stm32f10x_cec.c: 10 warnings, 0 errors compiling stm32f10x_dbgmcu.c... Library\src\stm32f10x_dbgmcu.c(137): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DBGMCU_PERIPH(DBGMCU_Periph)); Library\src\stm32f10x_dbgmcu.c: 1 warning, 0 errors compiling stm32f1xx_it.c... .\Library\inc\main.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" Library\src\stm32f1xx_it.c: 0 warnings, 1 error compiling stm32f1xx_hal_msp.c... .\Library\inc\main.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" Library\src\stm32f1xx_hal_msp.c: 0 warnings, 1 error compiling misc.c... Library\src\misc.c(99): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_PRIORITY_GROUP(NVIC_PriorityGroup)); Library\src\misc.c(117): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NVIC_InitStruct->NVIC_IRQChannelCmd)); Library\src\misc.c(159): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_VECTTAB(NVIC_VectTab)); Library\src\misc.c(178): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_LP(LowPowerMode)); Library\src\misc.c(202): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SYSTICK_CLK_SOURCE(SysTick_CLKSource)); Library\src\misc.c: 5 warnings, 0 errors compiling system_stm32f10x.c... compiling core_cm3.c... compiling stm32f10x_dac.c... Library\src\stm32f10x_dac.c(121): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_TRIGGER(DAC_InitStruct->DAC_Trigger)); Library\src\stm32f10x_dac.c(176): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c(236): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c(263): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c(287): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_dac.c(317): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c(347): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_ALIGN(DAC_Align)); Library\src\stm32f10x_dac.c(372): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_ALIGN(DAC_Align)); Library\src\stm32f10x_dac.c(401): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_ALIGN(DAC_Align)); Library\src\stm32f10x_dac.c(435): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c: 10 warnings, 0 errors compiling stm32f10x_exti.c... Library\src\stm32f10x_exti.c(106): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_MODE(EXTI_InitStruct->EXTI_Mode)); Library\src\stm32f10x_exti.c(174): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c(190): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GET_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c(212): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c(229): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GET_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c(252): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c: 6 warnings, 0 errors compiling stm32f10x_crc.c... compiling stm32f10x_adc.c... Library\src\stm32f10x_adc.c(182): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(223): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(302): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(327): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_DMA_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(357): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(382): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(396): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(420): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(434): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(460): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(485): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(514): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(539): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(594): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(689): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(711): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(737): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(763): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(803): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(827): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(852): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(877): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(934): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(998): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1030): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1057): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1086): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1149): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1170): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_adc.c(1199): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1231): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1252): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1287): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c: 34 warnings, 0 errors compiling stm32f10x_bkp.c... Library\src\stm32f10x_bkp.c(137): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_TAMPER_PIN_LEVEL(BKP_TamperPinLevel)); Library\src\stm32f10x_bkp.c(150): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_bkp.c(163): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_bkp.c(184): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_RTC_OUTPUT_SOURCE(BKP_RTCOutputSource)); Library\src\stm32f10x_bkp.c(205): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_CALIBRATION_VALUE(CalibrationValue)); Library\src\stm32f10x_bkp.c(227): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_DR(BKP_DR)); Library\src\stm32f10x_bkp.c(246): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_DR(BKP_DR)); Library\src\stm32f10x_bkp.c: 7 warnings, 0 errors compiling stm32f10x_flash.c... Library\src\stm32f10x_flash.c(259): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_LATENCY(FLASH_Latency)); Library\src\stm32f10x_flash.c(284): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_HALFCYCLEACCESS_STATE(FLASH_HalfCycleAccess)); Library\src\stm32f10x_flash.c(303): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_PREFETCHBUFFER_STATE(FLASH_PrefetchBuffer)); Library\src\stm32f10x_flash.c(423): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_ADDRESS(Page_Address)); Library\src\stm32f10x_flash.c(687): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_ADDRESS(Address)); Library\src\stm32f10x_flash.c(862): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_ADDRESS(Address)); Library\src\stm32f10x_flash.c(933): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_OB_DATA_ADDRESS(Address)); Library\src\stm32f10x_flash.c(982): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_WRPROT_PAGE(FLASH_Pages)); Library\src\stm32f10x_flash.c(1053): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_flash.c(1123): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_OB_IWDG_SOURCE(OB_IWDG)); Library\src\stm32f10x_flash.c(1325): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_IT(FLASH_IT)); Library\src\stm32f10x_flash.c(1402): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_GET_FLAG(FLASH_FLAG)) ; Library\src\stm32f10x_flash.c(1462): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_CLEAR_FLAG(FLASH_FLAG)) ; Library\src\stm32f10x_flash.c: 13 warnings, 0 errors compiling stm32f10x_dma.c... Library\src\stm32f10x_dma.c(111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(207): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(297): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(329): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(356): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(374): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(439): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_GET_FLAG(DMAy_FLAG)); Library\src\stm32f10x_dma.c(526): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_CLEAR_FLAG(DMAy_FLAG)); Library\src\stm32f10x_dma.c(601): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_GET_IT(DMAy_IT)); Library\src\stm32f10x_dma.c(687): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_CLEAR_IT(DMAy_IT)); Library\src\stm32f10x_dma.c: 10 warnings, 0 errors compiling stm32f10x_can.c... Library\src\stm32f10x_can.c(125): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(159): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(296): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_FILTER_NUMBER(CAN_FilterInitStruct->CAN_FilterNumber)); Library\src\stm32f10x_can.c(431): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_BANKNUMBER(CAN_BankNumber)); Library\src\stm32f10x_can.c(454): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(484): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(519): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(594): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(646): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(674): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(723): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(747): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(782): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(861): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(888): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(927): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(951): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(971): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1006): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1048): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1147): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1207): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1309): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c: 23 warnings, 0 errors compiling stm32f10x_iwdg.c... Library\src\stm32f10x_iwdg.c(95): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_WRITE_ACCESS(IWDG_WriteAccess)); Library\src\stm32f10x_iwdg.c(115): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_PRESCALER(IWDG_Prescaler)); Library\src\stm32f10x_iwdg.c(128): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_RELOAD(Reload)); Library\src\stm32f10x_iwdg.c(165): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_FLAG(IWDG_FLAG)); Library\src\stm32f10x_iwdg.c: 4 warnings, 0 errors compiling stm32f10x_gpio.c... Library\src\stm32f10x_gpio.c(111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(178): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(286): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(308): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(324): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(346): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(361): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(377): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(397): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(420): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(437): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(466): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_EVENTOUT_PORT_SOURCE(GPIO_PortSource)); Library\src\stm32f10x_gpio.c(486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_gpio.c(554): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_REMAP(GPIO_Remap)); Library\src\stm32f10x_gpio.c(613): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_EXTI_PORT_SOURCE(GPIO_PortSource)); Library\src\stm32f10x_gpio.c(632): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ETH_MEDIA_INTERFACE(GPIO_ETH_MediaInterface)); Library\src\stm32f10x_gpio.c: 16 warnings, 0 errors compiling stm32f10x_fsmc.c... Library\src\stm32f10x_fsmc.c(105): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NORSRAM_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(132): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NAND_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(179): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NORSRAM_BANK(FSMC_NORSRAMInitStruct->FSMC_Bank)); Library\src\stm32f10x_fsmc.c(267): warning: #223-D: function "assert_param" declared implicitly assert_param( IS_FSMC_NAND_BANK(FSMC_NANDInitStruct->FSMC_Bank)); Library\src\stm32f10x_fsmc.c(331): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_WAIT_FEATURE(FSMC_PCCARDInitStruct->FSMC_Waitfeature)); Library\src\stm32f10x_fsmc.c(477): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NORSRAM_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(503): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NAND_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(540): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_fsmc.c(566): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NAND_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(639): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_IT_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(703): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_GETFLAG_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(750): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_GETFLAG_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(788): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_IT_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(836): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_IT_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c: 14 warnings, 0 errors compiling stm32f10x_i2c.c... Library\src\stm32f10x_i2c.c(165): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(198): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(325): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(349): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(373): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(397): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(421): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(445): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(470): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(495): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(519): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(548): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(573): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(586): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(604): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(641): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(661): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(699): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(727): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(751): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(782): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(806): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(828): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(843): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(867): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(893): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1037): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1084): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1139): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1216): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1252): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1311): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c: 32 warnings, 0 errors compiling stm32f10x_pwr.c... Library\src\stm32f10x_pwr.c(127): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_pwr.c(140): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_pwr.c(162): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_PVD_LEVEL(PWR_PVDLevel)); Library\src\stm32f10x_pwr.c(181): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_pwr.c(201): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_REGULATOR(PWR_Regulator)); Library\src\stm32f10x_pwr.c(265): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_GET_FLAG(PWR_FLAG)); Library\src\stm32f10x_pwr.c(290): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_CLEAR_FLAG(PWR_FLAG)); Library\src\stm32f10x_pwr.c: 7 warnings, 0 errors compiling stm32f10x_rtc.c... Library\src\stm32f10x_rtc.c(93): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_IT(RTC_IT)); Library\src\stm32f10x_rtc.c(163): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_PRESCALER(PrescalerValue)); Library\src\stm32f10x_rtc.c(249): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_GET_FLAG(RTC_FLAG)); Library\src\stm32f10x_rtc.c(276): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_CLEAR_FLAG(RTC_FLAG)); Library\src\stm32f10x_rtc.c(295): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_GET_IT(RTC_IT)); Library\src\stm32f10x_rtc.c(321): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_IT(RTC_IT)); Library\src\stm32f10x_rtc.c: 6 warnings, 0 errors compiling stm32f10x_rcc.c... Library\src\stm32f10x_rcc.c(273): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_HSE(RCC_HSE)); Library\src\stm32f10x_rcc.c(338): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_CALIBRATION_VALUE(HSICalibrationValue)); Library\src\stm32f10x_rcc.c(357): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(383): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PLL_SOURCE(RCC_PLLSource)); Library\src\stm32f10x_rcc.c(404): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(568): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_SYSCLK_SOURCE(RCC_SYSCLKSource)); Library\src\stm32f10x_rcc.c(612): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_HCLK(RCC_SYSCLK)); Library\src\stm32f10x_rcc.c(638): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PCLK(RCC_HCLK)); Library\src\stm32f10x_rcc.c(664): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PCLK(RCC_HCLK)); Library\src\stm32f10x_rcc.c(703): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_IT(RCC_IT)); Library\src\stm32f10x_rcc.c(731): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_USBCLK_SOURCE(RCC_USBCLKSource)); Library\src\stm32f10x_rcc.c(770): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_ADCCLK(RCC_PCLK2)); Library\src\stm32f10x_rcc.c(832): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_LSE(RCC_LSE)); Library\src\stm32f10x_rcc.c(865): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(882): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_RTCCLK_SOURCE(RCC_RTCCLKSource)); Library\src\stm32f10x_rcc.c(896): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(1067): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_AHB_PERIPH(RCC_AHBPeriph)); Library\src\stm32f10x_rcc.c(1098): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB2_PERIPH(RCC_APB2Periph)); Library\src\stm32f10x_rcc.c(1129): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB1_PERIPH(RCC_APB1Periph)); Library\src\stm32f10x_rcc.c(1188): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB2_PERIPH(RCC_APB2Periph)); Library\src\stm32f10x_rcc.c(1219): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB1_PERIPH(RCC_APB1Periph)); Library\src\stm32f10x_rcc.c(1240): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(1253): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(1285): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_MCO(RCC_MCO)); Library\src\stm32f10x_rcc.c(1332): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_FLAG(RCC_FLAG)); Library\src\stm32f10x_rcc.c(1406): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_GET_IT(RCC_IT)); Library\src\stm32f10x_rcc.c(1451): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_CLEAR_IT(RCC_IT)); Library\src\stm32f10x_rcc.c: 27 warnings, 0 errors compiling stm32f10x_sdio.c... Library\src\stm32f10x_sdio.c(186): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CLOCK_EDGE(SDIO_InitStruct->SDIO_ClockEdge)); Library\src\stm32f10x_sdio.c(238): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(254): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_POWER_STATE(SDIO_PowerState)); Library\src\stm32f10x_sdio.c(310): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_IT(SDIO_IT)); Library\src\stm32f10x_sdio.c(334): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(351): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CMD_INDEX(SDIO_CmdInitStruct->SDIO_CmdIndex)); Library\src\stm32f10x_sdio.c(417): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_RESP(SDIO_RESP)); Library\src\stm32f10x_sdio.c(436): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_DATA_LENGTH(SDIO_DataInitStruct->SDIO_DataLength)); Library\src\stm32f10x_sdio.c(532): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(546): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(562): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_READWAIT_MODE(SDIO_ReadWaitMode)); Library\src\stm32f10x_sdio.c(576): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(590): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(604): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(617): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(630): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(671): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_FLAG(SDIO_FLAG)); Library\src\stm32f10x_sdio.c(707): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CLEAR_FLAG(SDIO_FLAG)); Library\src\stm32f10x_sdio.c(748): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_GET_IT(SDIO_IT)); Library\src\stm32f10x_sdio.c(782): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CLEAR_IT(SDIO_IT)); Library\src\stm32f10x_sdio.c: 20 warnings, 0 errors compiling stm32f10x_spi.c... Library\src\stm32f10x_spi.c(122): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(163): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(227): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_23_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(430): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(454): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_23_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(524): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(550): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(566): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(584): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(608): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(634): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(650): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(666): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(693): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(717): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(735): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(770): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(807): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(835): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(887): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c: 21 warnings, 0 errors compiling system_stm32f1xx.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Library\src\system_stm32f1xx.c: 0 warnings, 1 error compiling adc.c... .\Library\inc\adc.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" User\adc.c: 0 warnings, 1 error compiling stm32f10x_wwdg.c... Library\src\stm32f10x_wwdg.c(122): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_PRESCALER(WWDG_Prescaler)); Library\src\stm32f10x_wwdg.c(142): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_WINDOW_VALUE(WindowValue)); Library\src\stm32f10x_wwdg.c(173): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_COUNTER(Counter)); Library\src\stm32f10x_wwdg.c(188): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_COUNTER(Counter)); Library\src\stm32f10x_wwdg.c: 4 warnings, 0 errors compiling stm32f10x_usart.c... Library\src\stm32f10x_usart.c(133): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(184): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(306): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(354): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(393): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(451): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(479): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(502): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(521): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(550): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(569): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(595): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(612): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(628): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(644): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(664): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(683): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(708): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(734): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(765): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(792): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(821): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(840): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(878): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(926): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(961): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(1034): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c: 27 warnings, 0 errors compiling ds18b20.c... .\Library\inc\ds18b20.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" User\ds18b20.c: 0 warnings, 1 error compiling i2c.c... .\Library\inc\i2c.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" User\i2c.c: 0 warnings, 1 error compiling lcd1602.c... .\Library\inc\lcd1602.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" User\lcd1602.c: 0 warnings, 1 error compiling stm32f10x_tim.c... Library\src\stm32f10x_tim.c(125): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(231): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(284): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(367): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(449): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(528): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(590): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_CHANNEL(TIM_ICInitStruct->TIM_Channel)); Library\src\stm32f10x_tim.c(659): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(715): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(809): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(834): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(875): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(912): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(940): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST4_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(967): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST9_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(992): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1011): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1039): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1080): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1121): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1153): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1179): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1203): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1233): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1272): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST5_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1319): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1343): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1367): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1391): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1412): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1436): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1461): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST4_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST5_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1513): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1538): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1562): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1586): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1610): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1636): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1661): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1686): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1711): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1737): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1761): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1785): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1809): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1832): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1856): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1879): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST1_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1903): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1927): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST1_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1951): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1979): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2009): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2051): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2095): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2123): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2147): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2173): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2205): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST7_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2228): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2249): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2267): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2281): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2295): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2309): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2323): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2337): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2356): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2378): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2400): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2422): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2444): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2460): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2473): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2499): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2512): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2525): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2560): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2603): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2637): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2679): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c: 83 warnings, 0 errors compiling main.c... User\main.c(1): error: #5: cannot open source input file "stm32f10xx.h": No such file or directory #include "stm32f10xx.h" User\main.c: 0 warnings, 1 error compiling nb_iot.c... .\Library\inc\nb_iot.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" User\nb_iot.c: 0 warnings, 1 error compiling stm32f1xx_hal.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal.c: 0 warnings, 1 error compiling stm32f10x_it.c... compiling stm32f1xx_hal_adc.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_adc.c: 0 warnings, 1 error compiling stm32f1xx_hal_adc_ex.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_adc_ex.c: 0 warnings, 1 error compiling stm32f1xx_hal_cortex.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_cortex.c: 0 warnings, 1 error compiling stm32f1xx_hal_dma.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_dma.c: 0 warnings, 1 error compiling stm32f1xx_hal_exti.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_exti.c: 0 warnings, 1 error compiling stm32f1xx_hal_flash.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_flash.c: 0 warnings, 1 error compiling stm32f1xx_hal_flash_ex.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_flash_ex.c: 0 warnings, 1 error compiling stm32f1xx_hal_gpio.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_gpio.c: 0 warnings, 1 error compiling stm32f1xx_hal_gpio_ex.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_gpio_ex.c: 0 warnings, 1 error compiling stm32f1xx_hal_pwr.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_pwr.c: 0 warnings, 1 error compiling stm32f1xx_hal_rcc.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_rcc.c: 0 warnings, 1 error compiling stm32f1xx_hal_rcc_ex.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_rcc_ex.c: 0 warnings, 1 error compiling stm32f1xx_hal_tim.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_tim.c: 0 warnings, 1 error compiling stm32f1xx_hal_tim_ex.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_tim_ex.c: 0 warnings, 1 error compiling stm32f1xx_hal_uart.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(140): error: #35: #error directive: "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" #error "Please select first the target STM32F1xx device used in your application (in stm32f1xx.h file)" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_uart.c: 0 warnings, 1 error ".\Objects\Fire_Alarm.axf" - 25 Error(s), 380 Warning(s). Target not created. Build Time Elapsed: 00:00:03
08-25
Build started: Project: Fire_Alarm *** Using Compiler 'V5.06 update 6 (build 750)', folder: 'C:\迅雷下载\keil ruanj\ARM\ARMCC\Bin' Build target 'Target 1' compiling stm32f1xx_hal_msp.c... .\Library\inc\main.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" Library\src\stm32f1xx_hal_msp.c: 0 warnings, 1 error compiling stm32f10x_can.c... Library\src\stm32f10x_can.c(125): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(159): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(296): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_FILTER_NUMBER(CAN_FilterInitStruct->CAN_FilterNumber)); Library\src\stm32f10x_can.c(431): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_BANKNUMBER(CAN_BankNumber)); Library\src\stm32f10x_can.c(454): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(484): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(519): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(594): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(646): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(674): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(723): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(747): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(782): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(861): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(888): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(927): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(951): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(971): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1006): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1048): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1147): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1207): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c(1309): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CAN_ALL_PERIPH(CANx)); Library\src\stm32f10x_can.c: 23 warnings, 0 errors compiling stm32f10x_adc.c... Library\src\stm32f10x_adc.c(182): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(223): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(302): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(327): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_DMA_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(357): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(382): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(396): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(420): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(434): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(460): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(485): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(514): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(539): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(594): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(689): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(711): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(737): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(763): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(803): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(827): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(852): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(877): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(934): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(998): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1030): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1057): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1086): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1149): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1170): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_adc.c(1199): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1231): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1252): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c(1287): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); Library\src\stm32f10x_adc.c: 34 warnings, 0 errors compiling stm32f1xx_it.c... .\Library\inc\main.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" Library\src\stm32f1xx_it.c: 0 warnings, 1 error compiling stm32f10x_bkp.c... Library\src\stm32f10x_bkp.c(137): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_TAMPER_PIN_LEVEL(BKP_TamperPinLevel)); Library\src\stm32f10x_bkp.c(150): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_bkp.c(163): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_bkp.c(184): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_RTC_OUTPUT_SOURCE(BKP_RTCOutputSource)); Library\src\stm32f10x_bkp.c(205): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_CALIBRATION_VALUE(CalibrationValue)); Library\src\stm32f10x_bkp.c(227): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_DR(BKP_DR)); Library\src\stm32f10x_bkp.c(246): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_BKP_DR(BKP_DR)); Library\src\stm32f10x_bkp.c: 7 warnings, 0 errors compiling system_stm32f10x.c... compiling stm32f10x_cec.c... Library\src\stm32f10x_cec.c(140): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_BIT_TIMING_ERROR_MODE(CEC_InitStruct->CEC_BitTimingMode)); Library\src\stm32f10x_cec.c(167): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_cec.c(189): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_cec.c(202): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_ADDRESS(CEC_OwnAddress)); Library\src\stm32f10x_cec.c(216): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_PRESCALER(CEC_Prescaler)); Library\src\stm32f10x_cec.c(265): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_cec.c(297): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_GET_FLAG(CEC_FLAG)); Library\src\stm32f10x_cec.c(354): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_CLEAR_FLAG(CEC_FLAG)); Library\src\stm32f10x_cec.c(378): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_GET_IT(CEC_IT)); Library\src\stm32f10x_cec.c(413): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_CEC_GET_IT(CEC_IT)); Library\src\stm32f10x_cec.c: 10 warnings, 0 errors compiling stm32f10x_dbgmcu.c... Library\src\stm32f10x_dbgmcu.c(137): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DBGMCU_PERIPH(DBGMCU_Periph)); Library\src\stm32f10x_dbgmcu.c: 1 warning, 0 errors compiling core_cm3.c... compiling stm32f10x_crc.c... compiling misc.c... Library\src\misc.c(99): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_PRIORITY_GROUP(NVIC_PriorityGroup)); Library\src\misc.c(117): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NVIC_InitStruct->NVIC_IRQChannelCmd)); Library\src\misc.c(159): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_VECTTAB(NVIC_VectTab)); Library\src\misc.c(178): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_LP(LowPowerMode)); Library\src\misc.c(202): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SYSTICK_CLK_SOURCE(SysTick_CLKSource)); Library\src\misc.c: 5 warnings, 0 errors compiling stm32f10x_exti.c... Library\src\stm32f10x_exti.c(106): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_MODE(EXTI_InitStruct->EXTI_Mode)); Library\src\stm32f10x_exti.c(174): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c(190): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GET_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c(212): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c(229): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GET_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c(252): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); Library\src\stm32f10x_exti.c: 6 warnings, 0 errors compiling stm32f10x_flash.c... Library\src\stm32f10x_flash.c(259): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_LATENCY(FLASH_Latency)); Library\src\stm32f10x_flash.c(284): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_HALFCYCLEACCESS_STATE(FLASH_HalfCycleAccess)); Library\src\stm32f10x_flash.c(303): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_PREFETCHBUFFER_STATE(FLASH_PrefetchBuffer)); Library\src\stm32f10x_flash.c(423): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_ADDRESS(Page_Address)); Library\src\stm32f10x_flash.c(687): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_ADDRESS(Address)); Library\src\stm32f10x_flash.c(862): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_ADDRESS(Address)); Library\src\stm32f10x_flash.c(933): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_OB_DATA_ADDRESS(Address)); Library\src\stm32f10x_flash.c(982): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_WRPROT_PAGE(FLASH_Pages)); Library\src\stm32f10x_flash.c(1053): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_flash.c(1123): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_OB_IWDG_SOURCE(OB_IWDG)); Library\src\stm32f10x_flash.c(1325): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_IT(FLASH_IT)); Library\src\stm32f10x_flash.c(1402): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_GET_FLAG(FLASH_FLAG)) ; Library\src\stm32f10x_flash.c(1462): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FLASH_CLEAR_FLAG(FLASH_FLAG)) ; Library\src\stm32f10x_flash.c: 13 warnings, 0 errors compiling stm32f10x_dac.c... Library\src\stm32f10x_dac.c(121): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_TRIGGER(DAC_InitStruct->DAC_Trigger)); Library\src\stm32f10x_dac.c(176): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c(236): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c(263): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c(287): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_dac.c(317): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c(347): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_ALIGN(DAC_Align)); Library\src\stm32f10x_dac.c(372): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_ALIGN(DAC_Align)); Library\src\stm32f10x_dac.c(401): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_ALIGN(DAC_Align)); Library\src\stm32f10x_dac.c(435): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DAC_CHANNEL(DAC_Channel)); Library\src\stm32f10x_dac.c: 10 warnings, 0 errors compiling stm32f10x_dma.c... Library\src\stm32f10x_dma.c(111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(207): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(297): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(329): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(356): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(374): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_ALL_PERIPH(DMAy_Channelx)); Library\src\stm32f10x_dma.c(439): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_GET_FLAG(DMAy_FLAG)); Library\src\stm32f10x_dma.c(526): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_CLEAR_FLAG(DMAy_FLAG)); Library\src\stm32f10x_dma.c(601): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_GET_IT(DMAy_IT)); Library\src\stm32f10x_dma.c(687): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_DMA_CLEAR_IT(DMAy_IT)); Library\src\stm32f10x_dma.c: 10 warnings, 0 errors compiling stm32f10x_fsmc.c... Library\src\stm32f10x_fsmc.c(105): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NORSRAM_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(132): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NAND_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(179): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NORSRAM_BANK(FSMC_NORSRAMInitStruct->FSMC_Bank)); Library\src\stm32f10x_fsmc.c(267): warning: #223-D: function "assert_param" declared implicitly assert_param( IS_FSMC_NAND_BANK(FSMC_NANDInitStruct->FSMC_Bank)); Library\src\stm32f10x_fsmc.c(331): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_WAIT_FEATURE(FSMC_PCCARDInitStruct->FSMC_Waitfeature)); Library\src\stm32f10x_fsmc.c(477): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NORSRAM_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(503): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NAND_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(540): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_fsmc.c(566): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_NAND_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(639): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_IT_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(703): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_GETFLAG_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(750): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_GETFLAG_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(788): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_IT_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c(836): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FSMC_IT_BANK(FSMC_Bank)); Library\src\stm32f10x_fsmc.c: 14 warnings, 0 errors compiling stm32f10x_gpio.c... Library\src\stm32f10x_gpio.c(111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(178): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(286): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(308): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(324): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(346): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(361): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(377): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(397): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(420): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(437): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); Library\src\stm32f10x_gpio.c(466): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_EVENTOUT_PORT_SOURCE(GPIO_PortSource)); Library\src\stm32f10x_gpio.c(486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_gpio.c(554): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_REMAP(GPIO_Remap)); Library\src\stm32f10x_gpio.c(613): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_EXTI_PORT_SOURCE(GPIO_PortSource)); Library\src\stm32f10x_gpio.c(632): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ETH_MEDIA_INTERFACE(GPIO_ETH_MediaInterface)); Library\src\stm32f10x_gpio.c: 16 warnings, 0 errors compiling stm32f10x_iwdg.c... Library\src\stm32f10x_iwdg.c(95): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_WRITE_ACCESS(IWDG_WriteAccess)); Library\src\stm32f10x_iwdg.c(115): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_PRESCALER(IWDG_Prescaler)); Library\src\stm32f10x_iwdg.c(128): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_RELOAD(Reload)); Library\src\stm32f10x_iwdg.c(165): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_IWDG_FLAG(IWDG_FLAG)); Library\src\stm32f10x_iwdg.c: 4 warnings, 0 errors compiling stm32f10x_pwr.c... Library\src\stm32f10x_pwr.c(127): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_pwr.c(140): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_pwr.c(162): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_PVD_LEVEL(PWR_PVDLevel)); Library\src\stm32f10x_pwr.c(181): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_pwr.c(201): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_REGULATOR(PWR_Regulator)); Library\src\stm32f10x_pwr.c(265): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_GET_FLAG(PWR_FLAG)); Library\src\stm32f10x_pwr.c(290): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_PWR_CLEAR_FLAG(PWR_FLAG)); Library\src\stm32f10x_pwr.c: 7 warnings, 0 errors compiling stm32f10x_i2c.c... Library\src\stm32f10x_i2c.c(165): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(198): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(325): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(349): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(373): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(397): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(421): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(445): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(470): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(495): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(519): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(548): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(573): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(586): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(604): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(641): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(661): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(699): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(727): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(751): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(782): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(806): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(828): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(843): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(867): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(893): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1037): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1084): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1139): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1216): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1252): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c(1311): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_I2C_ALL_PERIPH(I2Cx)); Library\src\stm32f10x_i2c.c: 32 warnings, 0 errors compiling stm32f10x_rcc.c... Library\src\stm32f10x_rcc.c(273): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_HSE(RCC_HSE)); Library\src\stm32f10x_rcc.c(338): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_CALIBRATION_VALUE(HSICalibrationValue)); Library\src\stm32f10x_rcc.c(357): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(383): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PLL_SOURCE(RCC_PLLSource)); Library\src\stm32f10x_rcc.c(404): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(568): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_SYSCLK_SOURCE(RCC_SYSCLKSource)); Library\src\stm32f10x_rcc.c(612): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_HCLK(RCC_SYSCLK)); Library\src\stm32f10x_rcc.c(638): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PCLK(RCC_HCLK)); Library\src\stm32f10x_rcc.c(664): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PCLK(RCC_HCLK)); Library\src\stm32f10x_rcc.c(703): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_IT(RCC_IT)); Library\src\stm32f10x_rcc.c(731): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_USBCLK_SOURCE(RCC_USBCLKSource)); Library\src\stm32f10x_rcc.c(770): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_ADCCLK(RCC_PCLK2)); Library\src\stm32f10x_rcc.c(832): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_LSE(RCC_LSE)); Library\src\stm32f10x_rcc.c(865): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(882): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_RTCCLK_SOURCE(RCC_RTCCLKSource)); Library\src\stm32f10x_rcc.c(896): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(1067): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_AHB_PERIPH(RCC_AHBPeriph)); Library\src\stm32f10x_rcc.c(1098): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB2_PERIPH(RCC_APB2Periph)); Library\src\stm32f10x_rcc.c(1129): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB1_PERIPH(RCC_APB1Periph)); Library\src\stm32f10x_rcc.c(1188): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB2_PERIPH(RCC_APB2Periph)); Library\src\stm32f10x_rcc.c(1219): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB1_PERIPH(RCC_APB1Periph)); Library\src\stm32f10x_rcc.c(1240): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(1253): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_rcc.c(1285): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_MCO(RCC_MCO)); Library\src\stm32f10x_rcc.c(1332): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_FLAG(RCC_FLAG)); Library\src\stm32f10x_rcc.c(1406): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_GET_IT(RCC_IT)); Library\src\stm32f10x_rcc.c(1451): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_CLEAR_IT(RCC_IT)); Library\src\stm32f10x_rcc.c: 27 warnings, 0 errors compiling stm32f10x_rtc.c... Library\src\stm32f10x_rtc.c(93): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_IT(RTC_IT)); Library\src\stm32f10x_rtc.c(163): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_PRESCALER(PrescalerValue)); Library\src\stm32f10x_rtc.c(249): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_GET_FLAG(RTC_FLAG)); Library\src\stm32f10x_rtc.c(276): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_CLEAR_FLAG(RTC_FLAG)); Library\src\stm32f10x_rtc.c(295): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_GET_IT(RTC_IT)); Library\src\stm32f10x_rtc.c(321): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RTC_IT(RTC_IT)); Library\src\stm32f10x_rtc.c: 6 warnings, 0 errors compiling stm32f10x_sdio.c... Library\src\stm32f10x_sdio.c(186): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CLOCK_EDGE(SDIO_InitStruct->SDIO_ClockEdge)); Library\src\stm32f10x_sdio.c(238): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(254): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_POWER_STATE(SDIO_PowerState)); Library\src\stm32f10x_sdio.c(310): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_IT(SDIO_IT)); Library\src\stm32f10x_sdio.c(334): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(351): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CMD_INDEX(SDIO_CmdInitStruct->SDIO_CmdIndex)); Library\src\stm32f10x_sdio.c(417): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_RESP(SDIO_RESP)); Library\src\stm32f10x_sdio.c(436): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_DATA_LENGTH(SDIO_DataInitStruct->SDIO_DataLength)); Library\src\stm32f10x_sdio.c(532): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(546): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(562): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_READWAIT_MODE(SDIO_ReadWaitMode)); Library\src\stm32f10x_sdio.c(576): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(590): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(604): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(617): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(630): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); Library\src\stm32f10x_sdio.c(671): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_FLAG(SDIO_FLAG)); Library\src\stm32f10x_sdio.c(707): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CLEAR_FLAG(SDIO_FLAG)); Library\src\stm32f10x_sdio.c(748): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_GET_IT(SDIO_IT)); Library\src\stm32f10x_sdio.c(782): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SDIO_CLEAR_IT(SDIO_IT)); Library\src\stm32f10x_sdio.c: 20 warnings, 0 errors compiling stm32f10x_spi.c... Library\src\stm32f10x_spi.c(122): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(163): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(227): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_23_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(430): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(454): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_23_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(524): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(550): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(566): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(584): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(608): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(634): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(650): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(666): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(693): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(717): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(735): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(770): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(807): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(835): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c(887): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SPI_ALL_PERIPH(SPIx)); Library\src\stm32f10x_spi.c: 21 warnings, 0 errors compiling system_stm32f1xx.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Library\src\system_stm32f1xx.c: 0 warnings, 1 error compiling stm32f10x_wwdg.c... Library\src\stm32f10x_wwdg.c(122): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_PRESCALER(WWDG_Prescaler)); Library\src\stm32f10x_wwdg.c(142): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_WINDOW_VALUE(WindowValue)); Library\src\stm32f10x_wwdg.c(173): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_COUNTER(Counter)); Library\src\stm32f10x_wwdg.c(188): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_WWDG_COUNTER(Counter)); Library\src\stm32f10x_wwdg.c: 4 warnings, 0 errors compiling adc.c... .\Library\inc\adc.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" User\adc.c: 0 warnings, 1 error compiling ds18b20.c... .\Library\inc\ds18b20.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" User\ds18b20.c: 0 warnings, 1 error compiling stm32f10x_usart.c... Library\src\stm32f10x_usart.c(133): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(184): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(306): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(354): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(393): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(451): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(479): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(502): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(521): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(550): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(569): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(595): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(612): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(628): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(644): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(664): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(683): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(708): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(734): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(765): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(792): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(821): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(840): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(878): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(926): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(961): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c(1034): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); Library\src\stm32f10x_usart.c: 27 warnings, 0 errors compiling i2c.c... .\Library\inc\i2c.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" User\i2c.c: 0 warnings, 1 error compiling main.c... .\Library\inc\main.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" User\main.c: 0 warnings, 1 error compiling lcd1602.c... .\Library\inc\lcd1602.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" User\lcd1602.c: 0 warnings, 1 error compiling nb_iot.c... .\Library\inc\nb_iot.h(4): error: #5: cannot open source input file "stm32f10x_hal.h": No such file or directory #include "stm32f10x_hal.h" User\nb_iot.c: 0 warnings, 1 error compiling stm32f10x_tim.c... Library\src\stm32f10x_tim.c(125): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(231): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(284): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(367): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(449): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(528): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(590): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_CHANNEL(TIM_ICInitStruct->TIM_Channel)); Library\src\stm32f10x_tim.c(659): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(715): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(809): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(834): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(875): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(912): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(940): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST4_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(967): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST9_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(992): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1011): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1039): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1080): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1121): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1153): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1179): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1203): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1233): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1272): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST5_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1319): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1343): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1367): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1391): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1412): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1436): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1461): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST4_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST5_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1513): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1538): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1562): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1586): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1610): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1636): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1661): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1686): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1711): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1737): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1761): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1785): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1809): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1832): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1856): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1879): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST1_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1903): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1927): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST1_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1951): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(1979): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2009): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2051): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2095): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2123): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2147): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2173): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2205): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST7_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2228): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2249): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2267): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2281): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2295): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2309): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2323): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2337): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2356): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2378): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2400): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2422): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2444): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2460): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2473): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2499): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2512): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2525): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2560): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2603): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2637): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c(2679): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); Library\src\stm32f10x_tim.c: 83 warnings, 0 errors compiling stm32f1xx_hal.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal.c: 0 warnings, 1 error compiling stm32f10x_it.c... compiling stm32f1xx_hal_adc.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_adc.c: 0 warnings, 1 error compiling stm32f1xx_hal_adc_ex.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_adc_ex.c: 0 warnings, 1 error compiling stm32f1xx_hal_cortex.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_cortex.c: 0 warnings, 1 error compiling stm32f1xx_hal_dma.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_dma.c: 0 warnings, 1 error compiling stm32f1xx_hal_exti.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_exti.c: 0 warnings, 1 error compiling stm32f1xx_hal_flash.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_flash.c: 0 warnings, 1 error compiling stm32f1xx_hal_flash_ex.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_flash_ex.c: 0 warnings, 1 error compiling stm32f1xx_hal_gpio.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_gpio.c: 0 warnings, 1 error compiling stm32f1xx_hal_gpio_ex.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_gpio_ex.c: 0 warnings, 1 error compiling stm32f1xx_hal_pwr.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_pwr.c: 0 warnings, 1 error compiling stm32f1xx_hal_rcc.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_rcc.c: 0 warnings, 1 error compiling stm32f1xx_hal_rcc_ex.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_rcc_ex.c: 0 warnings, 1 error compiling stm32f1xx_hal_tim.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_tim.c: 0 warnings, 1 error compiling stm32f1xx_hal_tim_ex.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_tim_ex.c: 0 warnings, 1 error compiling stm32f1xx_hal_uart.c... .\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h(130): error: #5: cannot open source input file "stm32f103xb.h": No such file or directory #include "stm32f103xb.h" Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_uart.c: 0 warnings, 1 error ".\Objects\Fire_Alarm.axf" - 25 Error(s), 380 Warning(s). Target not created. Build Time Elapsed: 00:00:03
08-25
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值