LPC Xpresso and FreeRTOS

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

LPC Xpresso and FreeRTOS

1,579件の閲覧回数
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by risburtfernandes on Fri Jan 31 19:16:19 MST 2014

Hello

I am working on this project on FreeRTOS and  the LPC Xpresso.
I am facing a problem in the include path.

fatal error: FreeRTOSConfig.h: No such file or directory

I have included the directory where this file is located in the path.
But still the error keeps showing up. I am running this on windows.
I am using driver libraries as well as the CMSIS library.

And I have crated a separate directory where i have kept the FreeRTOS.h and other header files.
My FreeRTOSConfig.h file is in my source directory in another project in the same workspace.

please help.

ラベル(1)
0 件の賞賛
返信
1 返信

1,476件の閲覧回数
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by lpcxpresso-support on Sat Feb 01 09:28:12 MST 2014
You can find some information on search paths at:

http://support.code-red-tech.com/CodeRedWiki/IncludePaths

Adding the -v (verbose) to your compile line will show you the search paths in use when you build a file

[list]
  [*]Project Properties -> C/C++ Build -> Settings -> MCU C Compiler -> Miscellaneous
[/list]

Note that if you are using paths in the includes in your source files, make sure that you are using Unix style rather than Windows style - so use:

#include "../myinc.h"


rather than:

#include "..\myinc.h"


Regards,
LPCXpresso Support
0 件の賞賛
返信