Hello,
I am new user of AURIX and ERIKA OS. I am working on a project that requires the use of the board TC264 B-step along side with ERIKA OS.
I am using the Free Entry Tool Chain by HIGHTEC and the RT_Druid v2 (2.8) to generate the .oil file for ERIKA OS.
As I said I am newbie in this field and I want some examples or tutorials to get used to the board with the RTOS. Unfortunately, I didn't find any examples for the TC26x series. So, I used the example provided by HIGHTEC for the TC26x B-step Series ( Time demo ) and I add an RT_Druid builder to the project.
But after building the project, I get an error. The following picture presents the error.
Can you please help me. Thank you.
Best regards,
AURIX TC26x B-step with RT_Druid v2
Moderator: paolo.gai
AURIX TC26x B-step with RT_Druid v2
- Attachments
-
- error_compiling.PNG (25.32 KiB) Viewed 16938 times
Re: AURIX TC26x B-step with RT_Druid v2
the problem is that in .oil file you listed a code.c file as APP_SRC (serach with your editor APP_SRC = "code.c";) but you don't have 9it in your project.
Remember if you build with ERIKA's toolchain you have to list all your srcs files a s APP_SRCs in .oil in in the following ways:
Remember if you build with ERIKA's toolchain you have to list all your srcs files a s APP_SRCs in .oil in in the following ways:
Code: Select all
...
APP_SRC = "file1.c";
APP_SRC = "relative_path_to/file2.c";
APP_SRC = "C:/absolute/path/to/file3.c";
...