AURIX TC26x B-step with RT_Druid v2

Forum related to ERIKA Enterprise and RT-Druid version 2

Moderator: paolo.gai

Post Reply
ChayMa
Newbie
Posts: 41
Joined: Tue Mar 26, 2019 5:44 pm

AURIX TC26x B-step with RT_Druid v2

Post by ChayMa » Mon Apr 01, 2019 4:19 pm

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,
Attachments
error_compiling.PNG
error_compiling.PNG (25.32 KiB) Viewed 12343 times

e.guidieri
Full Member
Posts: 166
Joined: Tue May 10, 2011 2:05 pm

Re: AURIX TC26x B-step with RT_Druid v2

Post by e.guidieri » Mon Apr 01, 2019 4:39 pm

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:

Code: Select all

  ...
  APP_SRC = "file1.c";
  APP_SRC = "relative_path_to/file2.c";
  APP_SRC = "C:/absolute/path/to/file3.c";
  ...

Post Reply