dadqad / smart-home-system

智能家居系统,使用Proteus 8.12 仿真 STM32,温湿度传感器、OLED屏幕等软件,毕业设计可以参考。
5 stars 0 forks source link

代码怎么运行错误呢 #1

Open DBYDSX opened 5 months ago

dadqad commented 5 months ago

应该不会把,可以截图一下报错,我已经删除环境了,没办法给你运行。

DBYDSX commented 5 months ago

$I_D{DR8QCK337 _TXEY)9

dadqad commented 5 months ago

你开发环境没有配好,这个代码好像用的是正点原子的代码模板把,有点久了我有点忘记了

dadqad commented 5 months ago

还有你截图的地方都是警告,不是报错

DBYDSX commented 5 months ago

杜宝玉 @.***

 

------------------ 原始邮件 ------------------ 发件人: "dadqad/smart-home-system" @.>; 发送时间: 2024年4月3日(星期三) 晚上8:15 @.>; @.**@.>; 主题: Re: [dadqad/smart-home-system] 代码怎么运行错误呢 (Issue #1)

还有你截图的地方都是警告,不是报错

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>

DBYDSX commented 5 months ago

![Uploading Snipaste_2024-04-03_20-31-37.png…]()

DBYDSX commented 5 months ago
USART_InitTypeDef USART_InitStructure;

SYSTEM\usart\usart.c(50): error: #20: identifier "NVIC_InitTypeDef" is undefined NVIC_InitTypeDef NVIC_InitStructure; SYSTEM\usart\usart.c(53): warning: #223-D: function "RCC_APB2PeriphClockCmd" declared implicitly RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, ENABLE);
SYSTEM\usart\usart.c(53): error: #20: identifier "RCC_APB2Periph_USART1" is undefined RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, ENABLE);
SYSTEM\usart\usart.c(53): error: #20: identifier "RCC_APB2Periph_GPIOA" is undefined RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, ENABLE);
SYSTEM\usart\usart.c(56): warning: #223-D: function "USART_DeInit" declared implicitly USART_DeInit(USART1);
SYSTEM\usart\usart.c(59): error: #20: identifier "GPIO_Pin_9" is undefined GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9; //USART1_TXD(PA.9)
SYSTEM\usart\usart.c(60): error: #20: identifier "GPIO_Mode_AF_PP" is undefined GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //复用推挽输出 SYSTEM\usart\usart.c(61): error: #20: identifier "GPIO_Speed_50MHz" is undefined GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //设置引脚输出最大速率为50MHz SYSTEM\usart\usart.c(62): warning: #223-D: function "GPIO_Init" declared implicitly GPIO_Init(GPIOA, &GPIO_InitStructure); //调用库函数中的GPIO初始化函数,初始化USART1_TXD(PA.9)
SYSTEM\usart\usart.c(65): error: #20: identifier "GPIO_Pin_10" is undefined GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10; //USART1_RXD(PA.10) SYSTEM\usart\usart.c(66): error: #20: identifier "GPIO_Mode_IN_FLOATING" is undefined GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; //浮空输入 SYSTEM\usart\usart.c(72): error: #20: identifier "USART_WordLength_8b" is undefined USART_InitStructure.USART_WordLength = USART_WordLength_8b; //8位数据格式 SYSTEM\usart\usart.c(73): error: #20: identifier "USART_StopBits_1" is undefined USART_InitStructure.USART_StopBits = USART_StopBits_1; //1个停止位 SYSTEM\usart\usart.c(74): error: #20: identifier "USART_Parity_No" is undefined USART_InitStructure.USART_Parity = USART_Parity_No; //无奇偶校验位 SYSTEM\usart\usart.c(75): error: #20: identifier "USART_HardwareFlowControl_None" is undefined USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None; //无硬件数据流控制 SYSTEM\usart\usart.c(76): error: #20: identifier "USART_Mode_Rx" is undefined USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx; //工作模式设置为收发模式 SYSTEM\usart\usart.c(76): error: #20: identifier "USART_Mode_Tx" is undefined USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx; //工作模式设置为收发模式 SYSTEM\usart\usart.c(77): warning: #223-D: function "USART_Init" declared implicitly USART_Init(USART1, &USART_InitStructure); //初始化串口1 SYSTEM\usart\usart.c(84): warning: #223-D: function "NVIC_Init" declared implicitly NVIC_Init(&NVIC_InitStructure); //根据指定的参数初始化VIC寄存器 SYSTEM\usart\usart.c(86): warning: #223-D: function "USART_ITConfig" declared implicitly USART_ITConfig(USART1, USART_IT_RXNE, ENABLE); //使能串口1接收中断 SYSTEM\usart\usart.c(86): error: #20: identifier "USART_IT_RXNE" is undefined USART_ITConfig(USART1, USART_IT_RXNE, ENABLE); //使能串口1接收中断 SYSTEM\usart\usart.c(88): warning: #223-D: function "USART_Cmd" declared implicitly USART_Cmd(USART1, ENABLE); //使能串口 SYSTEM\usart\usart.c(89): warning: #223-D: function "USART_ClearFlag" declared implicitly USART_ClearFlag(USART1, USART_FLAG_TC); //清除发送完成标志 SYSTEM\usart\usart.c(89): error: #20: identifier "USART_FLAG_TC" is undefined USART_ClearFlag(USART1, USART_FLAG_TC); //清除发送完成标志 SYSTEM\usart\usart.c(105): warning: #223-D: function "USART_SendData" declared implicitly USART_SendData(USART1 ,*s++);//发送当前字符 SYSTEM\usart\usart.c(106): warning: #223-D: function "USART_GetFlagStatus" declared implicitly while(USART_GetFlagStatus(USART1, USART_FLAG_TC)==RESET); SYSTEM\usart\usart.c(106): error: #20: identifier "USART_FLAG_TC" is undefined while(USART_GetFlagStatus(USART1, USART_FLAG_TC)==RESET); SYSTEM\usart\usart.c(121): warning: #223-D: function "USART_GetITStatus" declared implicitly if(USART_GetITStatus(USART1, USART_IT_RXNE) != RESET) //接收中断(接收到的数据必须是0x0d 0x0a结尾) SYSTEM\usart\usart.c(121): error: #20: identifier "USART_IT_RXNE" is undefined if(USART_GetITStatus(USART1, USART_IT_RXNE) != RESET) //接收中断(接收到的数据必须是0x0d 0x0a结尾) SYSTEM\usart\usart.c(123): warning: #223-D: function "USART_ReceiveData" declared implicitly Res =USART_ReceiveData(USART1); //读取接收到的数据 SYSTEM\usart\usart.c(156): error: #20: identifier "GPIO_InitTypeDef" is undefined GPIO_InitTypeDef GPIO_InitStructure; SYSTEM\usart\usart.c(157): error: #20: identifier "USART_InitTypeDef" is undefined USART_InitTypeDef USART_InitStructure; SYSTEM\usart\usart.c(158): error: #20: identifier "NVIC_InitTypeDef" is undefined NVIC_InitTypeDef NVIC_InitStructure; SYSTEM\usart\usart.c(161): warning: #223-D: function "RCC_APB1PeriphClockCmd" declared implicitly RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);
SYSTEM\usart\usart.c(161): error: #20: identifier "RCC_APB1Periph_USART2" is undefined RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);
SYSTEM\usart\usart.c(162): warning: #223-D: function "RCC_APB2PeriphClockCmd" declared implicitly RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
SYSTEM\usart\usart.c(162): error: #20: identifier "RCC_APB2Periph_GPIOA" is undefined RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
SYSTEM\usart\usart.c(164): warning: #223-D: function "USART_DeInit" declared implicitly USART_DeInit(USART2);
SYSTEM\usart\usart.c(167): error: #20: identifier "GPIO_Pin_2" is undefined GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2; //USART2_TXD(PA.2)
SYSTEM\usart\usart.c(168): error: #20: identifier "GPIO_Mode_AF_PP" is undefined GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //复用推挽输出 SYSTEM\usart\usart.c(169): error: #20: identifier "GPIO_Speed_50MHz" is undefined GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //设置引脚输出最大速率为50MHz SYSTEM\usart\usart.c(170): warning: #223-D: function "GPIO_Init" declared implicitly GPIO_Init(GPIOA, &GPIO_InitStructure); //调用库函数中的GPIO初始化函数,初始化USART1_TXD(PA.9)
SYSTEM\usart\usart.c(173): error: #20: identifier "GPIO_Pin_3" is undefined GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3; //USART2_RXD(PA.3) SYSTEM\usart\usart.c(174): error: #20: identifier "GPIO_Mode_IN_FLOATING" is undefined GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; //浮空输入 SYSTEM\usart\usart.c: 16 warnings, 30 errors compiling oled.c... Src\OLED\oled.c(47): warning: #223-D: function "GPIO_SetBits" declared implicitly OLED_SCLK_Set() ; Src\OLED\oled.c(47): error: #20: identifier "GPIO_Pin_12" is undefined OLED_SCLK_Set() ; Src\OLED\oled.c(48): error: #20: identifier "GPIO_Pin_13" is undefined OLED_SDIN_Set(); Src\OLED\oled.c(49): warning: #223-D: function "GPIO_ResetBits" declared implicitly OLED_SDIN_Clr(); Src\OLED\oled.c(58): warning: #223-D: function "GPIO_SetBits" declared implicitly OLED_SCLK_Set() ; Src\OLED\oled.c(58): error: #20: identifier "GPIO_Pin_12" is undefined OLED_SCLK_Set() ; Src\OLED\oled.c(60): warning: #223-D: function "GPIO_ResetBits" declared implicitly OLED_SDIN_Clr(); Src\OLED\oled.c(60): error: #20: identifier "GPIO_Pin_13" is undefined OLED_SDIN_Clr(); Src\OLED\oled.c(84): warning: #223-D: function "GPIO_SetBits" declared implicitly OLED_SCLK_Set() ; Src\OLED\oled.c(84): error: #20: identifier "GPIO_Pin_12" is undefined OLED_SCLK_Set() ; Src\OLED\oled.c(85): warning: #223-D: function "GPIO_ResetBits" declared implicitly OLED_SCLK_Clr(); Src\OLED\oled.c(96): warning: #223-D: function "GPIO_ResetBits" declared implicitly OLED_SCLK_Clr(); Src\OLED\oled.c(96): error: #20: identifier "GPIO_Pin_12" is undefined OLED_SCLK_Clr(); Src\OLED\oled.c(103): warning: #223-D: function "GPIO_SetBits" declared implicitly {OLED_SDIN_Set();} Src\OLED\oled.c(103): error: #20: identifier "GPIO_Pin_13" is undefined {OLED_SDIN_Set();} Src\OLED\oled.c(104): error: #20: identifier "GPIO_Pin_13" is undefined else OLED_SDIN_Clr(); Src\OLED\oled.c(106): warning: #223-D: function "GPIO_SetBits" declared implicitly OLED_SCLK_Set(); Src\OLED\oled.c(358): error: #20: identifier "GPIO_InitTypeDef" is undefined GPIO_InitTypeDef GPIO_InitStructure; Src\OLED\oled.c(360): warning: #223-D: function "RCC_APB2PeriphClockCmd" declared implicitly RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE); //使能A端口时钟 Src\OLED\oled.c(360): error: #20: identifier "RCC_APB2Periph_GPIOB" is undefined RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE); //使能A端口时钟 Src\OLED\oled.c(361): error: #20: identifier "GPIO_Pin_12" is undefined GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12|GPIO_Pin_13;
Src\OLED\oled.c(361): error: #20: identifier "GPIO_Pin_13" is undefined GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12|GPIO_Pin_13;
Src\OLED\oled.c(362): error: #20: identifier "GPIO_Mode_Out_PP" is undefined GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出 Src\OLED\oled.c(363): error: #20: identifier "GPIO_Speed_50MHz" is undefined GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;//速度50MHz Src\OLED\oled.c(364): warning: #223-D: function "GPIO_Init" declared implicitly GPIO_Init(GPIOB, &GPIO_InitStructure); //初始化GPIOD3,6 Src\OLED\oled.c: 11 warnings, 14 errors compiling main.c... main.c(49): warning: #223-D: function "RCC_SYSCLKConfig" declared implicitly RCC_SYSCLKConfig(RCC_SYSCLKSource_HSI); main.c(49): error: #20: identifier "RCC_SYSCLKSource_HSI" is undefined RCC_SYSCLKConfig(RCC_SYSCLKSource_HSI); main.c(54): warning: #223-D: function "RaindropAndPhotoelectricSensor_Init" declared implicitly RaindropAndPhotoelectricSensor_Init(); main.c(68): warning: #223-D: function "KEY_Scan" declared implicitly key_flag=KEY_Scan(0); main.c(70): warning: #223-D: function "u2_printf" declared implicitly u2_printf("下雨报警\r\n"); main.c(78): warning: #223-D: function "u2_printf" declared implicitly u2_printf("盗窃警报\r\n");
main.c(86): warning: #223-D: function "u2_printf" declared implicitly u2_printf("温度:%f 湿度:%f\r\n",DHT11_Data.temp_int,DHT11_Data.humi_int);
main.c(93): warning: #223-D: function "u2_printf" declared implicitly u2_printf("火灾警报\r\n");
main.c(97): warning: #223-D: function "u2_printf" declared implicitly u2_printf("强光警报\r\n");
main.c(104): warning: #111-D: statement is unreachable return 0; main.c: 9 warnings, 1 error compiling stm32f10x_exti.c... D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_exti.c(106): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_MODE(EXTI_InitStruct->EXTI_Mode)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_exti.c(174): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_exti.c(190): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GET_EXTI_LINE(EXTI_Line)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_exti.c(212): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_exti.c(229): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GET_EXTI_LINE(EXTI_Line)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_exti.c(252): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_EXTI_LINE(EXTI_Line)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_exti.c: 6 warnings, 0 errors compiling sys.c... compiling misc.c... D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\misc.c(99): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_PRIORITY_GROUP(NVIC_PriorityGroup)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\misc.c(117): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NVIC_InitStruct->NVIC_IRQChannelCmd)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\misc.c(159): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_VECTTAB(NVIC_VectTab)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\misc.c(178): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_NVIC_LP(LowPowerMode)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\misc.c(202): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_SYSTICK_CLK_SOURCE(SysTick_CLKSource)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\misc.c: 5 warnings, 0 errors compiling sim900a.c... Src\SIM900A\sim900a.c(107): warning: #167-D: argument of type "char " is incompatible with parameter of type "u8 " sim900a_send_cmd(str,0,100); Src\SIM900A\sim900a.c: 1 warning, 0 errors compiling stm32f10x_rcc.c... D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(273): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_HSE(RCC_HSE)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(338): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_CALIBRATION_VALUE(HSICalibrationValue)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(357): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(383): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PLL_SOURCE(RCC_PLLSource)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(404): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(568): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_SYSCLK_SOURCE(RCC_SYSCLKSource)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(612): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_HCLK(RCC_SYSCLK)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(638): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PCLK(RCC_HCLK)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(664): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_PCLK(RCC_HCLK)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(703): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_IT(RCC_IT)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(731): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_USBCLK_SOURCE(RCC_USBCLKSource)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(770): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_ADCCLK(RCC_PCLK2)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(832): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_LSE(RCC_LSE)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(865): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(882): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_RTCCLK_SOURCE(RCC_RTCCLKSource)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(896): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(1067): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_AHB_PERIPH(RCC_AHBPeriph)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(1098): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB2_PERIPH(RCC_APB2Periph)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(1129): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB1_PERIPH(RCC_APB1Periph)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(1188): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB2_PERIPH(RCC_APB2Periph)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(1219): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_APB1_PERIPH(RCC_APB1Periph)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(1240): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(1253): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(1285): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_MCO(RCC_MCO)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(1332): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_FLAG(RCC_FLAG)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(1406): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_GET_IT(RCC_IT)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c(1451): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_RCC_CLEAR_IT(RCC_IT)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_rcc.c: 27 warnings, 0 errors compiling stm32f10x_gpio.c... D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(178): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(286): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(308): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(324): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(346): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(361): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(377): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(397): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(420): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(437): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(466): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_EVENTOUT_PORT_SOURCE(GPIO_PortSource)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(554): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_REMAP(GPIO_Remap)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(613): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_EXTI_PORT_SOURCE(GPIO_PortSource)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c(632): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_GPIO_ETH_MEDIA_INTERFACE(GPIO_ETH_MediaInterface)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_gpio.c: 16 warnings, 0 errors compiling stm32f10x_adc.c... D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(182): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(223): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(302): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(327): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_DMA_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(357): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(382): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(396): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(420): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(434): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(460): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(485): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(514): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(539): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(594): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(689): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(711): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(737): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(763): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(803): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(827): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(852): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(877): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(934): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(998): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(1030): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(1057): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(1086): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(1111): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(1149): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(1170): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_FUNCTIONAL_STATE(NewState)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(1199): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(1231): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(1252): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c(1287): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_ADC_ALL_PERIPH(ADCx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_adc.c: 34 warnings, 0 errors assembling startup_stm32f10x_md.s... compiling stm32f10x_usart.c... D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(133): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(184): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(306): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(354): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(393): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(451): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(479): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(502): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(521): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(550): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(569): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(595): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(612): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(628): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(644): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(664): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(683): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(708): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_123_PERIPH(USARTx));
D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(734): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(765): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(792): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(821): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(840): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(878): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(926): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(961): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c(1034): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_USART_ALL_PERIPH(USARTx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_usart.c: 27 warnings, 0 errors compiling stm32f10x_tim.c... D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(125): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(231): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(284): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(367): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(449): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(528): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(590): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_CHANNEL(TIM_ICInitStruct->TIM_Channel));
D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(659): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(715): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(809): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(834): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(875): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(912): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(940): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST4_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(967): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST9_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(992): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1011): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1039): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1080): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1121): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1153): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1179): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1203): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1233): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1272): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST5_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1319): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1343): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1367): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1391): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1412): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1436): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1461): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST4_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST5_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1513): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1538): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1562): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1586): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1610): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1636): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1661): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1686): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1711): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1737): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1761): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1785): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1809): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1832): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1856): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1879): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST1_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1903): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1927): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST1_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1951): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(1979): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2009): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST2_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2051): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2095): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2123): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2147): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2173): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2205): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST7_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2228): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2249): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2267): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2281): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2295): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2309): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2323): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2337): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2356): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2378): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2400): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2422): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2444): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2460): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST8_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2473): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST6_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2486): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2499): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_LIST3_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2512): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2525): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2560): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2603): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2637): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c(2679): warning: #223-D: function "assert_param" declared implicitly assert_param(IS_TIM_ALL_PERIPH(TIMx)); D:\Study\Keil5\Keil\STM32F1xx_DFP\1.0.5\Device\StdPeriph_Driver\src\stm32f10x_tim.c: 83 warnings, 0 errors compiling system_stm32f10x.c... ".\Objects\Main.axf" - 98 Error(s), 266 Warning(s). Target not created. Build Time Elapsed: 00:00:02

dadqad commented 5 months ago

环境没对自己重新搞一下把,