- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
I've got a question: I created a NIOS II application with BSP from the Micro C/OS II hello-template using the the eclipse SBT. My problem is that i always have to write the complete relative path when i for example want to include the generated system-header file (system.h) into a file of my application folder for some reason. shouldn't it be possible just to write# include "system.h" instead of# include "../project_name_bsp/system.h" , since this file is part of the BSP? I already saw examples where they included system.h and other device-driver-headers without writing the whole relative path each time. Did i missed something? Do i have to adapt something in the bsp settings? Cleaning the project and re-generating the BSP did not change anything. Thanks in advance rookie2017Link Copied
3 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It is possible, yes.
First thing to try is:#include <system.h>
Noting the <> rather than "". This sometimes makes a difference. The second thing is to make sure your BSP project is open and correctly referenced by the application project. If you right click on your application project in "project explorer" and select "Properties". Under the "Project References" tab you should see a list of all projects currently in your workspace. Make sure there is a checked box next to the BSP project. Apply any changes and close the properties window. Next right click on your application project again, this time going to "Index->Rebuild". This will rebuild the index of files. Having done those two things I've had no issues having Eclipse detect the header files in the BSP folder - i.e. the full relative path shouldn't be needed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello TCWORLD,
The box beside the BSP was actually not checked. Thank you very much, I really appreciate! rookie2017- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I was looking at the same issue and this was the problem.
I wonder why it is necessary to have to go and select the BSP as it was selected during the project creation.
Should such a setting not have been done automatically?
I am looking at the 2018.1 SDK version
Br Mike

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page