Missing #include "GPIO_PDD.h" from Generated Code

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

Missing #include "GPIO_PDD.h" from Generated Code

跳至解决方案
2,447 次查看
superguys
Contributor I

I am using the PE stand-alone version 10.0.0, see attached image.

I modified the helloworld example for arm in the LK25SC projects to include I2C.

I then generated the code and updated the project in Keil MDK.

When I try to compile I get the following error:

.\Generated_Code\Blue_LED.h(53): error:  #5: cannot open source input file "GPIO_PDD.h": No such file or directory

I searched the folders of the project and I can't find the file.

When I diffed ".\Generated_Code\Blue_LED.h" I see the following: (See attached image)

  GPIOD_PDDR &= (uint32_t)~0x02UL;    from example

has changed to

GPIOD_PDDR &= (uint32_t)~(uint32_t)(GPIO_PDDR_PDD(0x02));   when generated.

Am I missing a setting in my code generation or do I need to update?

0 项奖励
1 解答
890 次查看
vfilip
NXP Employee
NXP Employee

Hello,

from the description seems that you didn´t set properly the path to the PDD files. Please check that you have the corresponding file on your disc and also in the compiler paths.

{YOUR INSTALLATION}\MCU\ProcessorExpert\lib\Kinetis\pdd\inc\GPIO_PDD.h

best regards

Vojtech Filip

Processor Expert Support Team


在原帖中查看解决方案

0 项奖励
2 回复数
891 次查看
vfilip
NXP Employee
NXP Employee

Hello,

from the description seems that you didn´t set properly the path to the PDD files. Please check that you have the corresponding file on your disc and also in the compiler paths.

{YOUR INSTALLATION}\MCU\ProcessorExpert\lib\Kinetis\pdd\inc\GPIO_PDD.h

best regards

Vojtech Filip

Processor Expert Support Team


0 项奖励
890 次查看
superguys
Contributor I

Thank you for the assistance.

Isaac

0 项奖励