在keil mdk中的error: #28: expression must have a constant value

最近将一段正常的代码复制到另一文件中编译时死活出问题,如下:

void GPIO_Link_Init(GPIO_TypeDef* GPIOx,uint32_t RCC_AHB1Periph,uint32_t GPIO_Pin,GPIOMode_TypeDef GPIO_Mode,GPIOSpeed_TypeDef GPIO_Speed,GPIOOType_TypeDef GPIO_OType,GPIOPuPd_TypeDef GPIO_PuPd){

GPIO_InitTypeDef GPIO_InitStruct={GPIO_Pin,GPIO_Mode,GPIO_Speed,GPIO_OType,GPIO_PuPd};    //error line
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph,ENABLE);
GPIO_Init(GPIOx,&GPIO_InitStruct);

}

..\SYSTEM\sys\sys.c(48): error:  #28: expression must have a constant value
        GPIO_InitTypeDef GPIO_InitStruct={GPIO_Pin,GPIO_Mode,GPIO_Speed,GPIO_OType,GPIO_PuPd};
..\SYSTEM\sys\sys.c(48): error:  #28: expression must have a constant value
        GPIO_InitTypeDef GPIO_InitStruct={GPIO_Pin,GPIO_Mode,GPIO_Speed,GPIO_OType,GPIO_PuPd};
..\SYSTEM\sys\sys.c(48): error:  #28: expression must have a constant value
        GPIO_InitTypeDef GPIO_InitStruct={GPIO_Pin,GPIO_Mode,GPIO_Speed,GPIO_OType,GPIO_PuPd};
..\SYSTEM\sys\sys.c(48): error:  #28: expression must have a constant value
        GPIO_InitTypeDef GPIO_InitStruct={GPIO_Pin,GPIO_Mode,GPIO_Speed,GPIO_OType,GPIO_PuPd};
..\SYSTEM\sys\sys.c(48): error:  #28: expression must have a constant value
        GPIO_InitTypeDef GPIO_InitStruct={GPIO_Pin,GPIO_Mode,GPIO_Speed,GPIO_OType,GPIO_PuPd};
..\SYSTEM\sys\sys.c: 0 warnings, 5 errors
"..\OBJ\template.axf" - 5 Error(s), 0 Warning(s).

后来把file type改成C++后正常了.

这应该是C与C++编译环境的问题,把文件改成C++文件编译就OK通过了.


你可能感兴趣的:(keil,mdk)