Search found 166 matches

by e.guidieri
Thu Apr 11, 2019 11:35 am
Forum: ERIKA Enterprise and RT-Druid v3
Topic: iLLD version 1.0.1.8.0 in ERIKA v.3 (LIN App)
Replies: 2
Views: 2562

Re: iLLD version 1.0.1.8.0 in ERIKA v.3 (LIN App)

Hi,

there's no reason that prevent you to make it works, but the integration could be not straightforward.
by e.guidieri
Tue Apr 09, 2019 6:14 pm
Forum: ERIKA Enterprise and RT-Druid v3
Topic: Linking custom library error
Replies: 1
Views: 2108

Re: Linking custom library error

Hi, the problem seems to be that libflush, depends on C library, so you need a baremetal port of the lib C in your toolchain (and link it explicitly through LDFLAGS and LIBS in OIL as you have done for the flush lib it self). When you link for linux the toolchains implicitly links the libc (if you d...
by e.guidieri
Mon Apr 01, 2019 4:39 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: AURIX TC26x B-step with RT_Druid v2
Replies: 1
Views: 12295

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: ... APP_SRC = "f...
by e.guidieri
Mon Apr 01, 2019 10:48 am
Forum: ERIKA Enterprise and RT-Druid v2
Topic: Erika on Aurix TC297B
Replies: 18
Views: 86595

Re: Erika on Aurix TC297B

We wrote a minimal driver for the leds of TriBoard tc2x5,

but you cannot use it as is since the board you are using is different.
by e.guidieri
Thu Mar 28, 2019 4:09 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: Erika on Aurix TC297B
Replies: 18
Views: 86595

Re: Erika on Aurix TC297B

Obviously since tc26x is just a dual core you cannot run a 3 core configuration just as is,
you have to adjust it removing al the reference to the third core.
by e.guidieri
Thu Mar 28, 2019 3:25 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: Erika on Aurix TC297B
Replies: 18
Views: 86595

Re: Erika on Aurix TC297B

The right value is simply TC26x

Code: Select all

    MCU_DATA = TRICORE {
      MODEL = TC26x;
    };
by e.guidieri
Thu Mar 28, 2019 11:52 am
Forum: ERIKA Enterprise and RT-Druid v2
Topic: Erika on Aurix TC297B
Replies: 18
Views: 86595

Re: Erika on Aurix TC297B

The problem is the configuration on the environment for the compiler path as you can see in the on the image. Have you used the Environment Variable or the common_oil.pref property file? http://erika.tuxfamily.org/wiki/index.php?title=RT-Druid_configuration#Compiler_paths Use the slash instead of ba...
by e.guidieri
Wed Mar 27, 2019 3:26 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: Erika on Aurix TC297B
Replies: 18
Views: 86595

Re: Erika on Aurix TC297B

Could you guarantee to have an ERIKA's checkout in:

C:\Users\CHAYMA~1\WORKSP~1\PROJEC~1\ee_files ?

If you want to use the ERIKA inside RT-Druid just unset ERIKA_FILES (and EEBASE) system variables, otherwise double check your configuration
by e.guidieri
Fri Mar 22, 2019 1:22 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: Error "other than 'LINUX' not supported"
Replies: 3
Views: 14165

Re: Error "other than 'LINUX' not supported"

Change the MCU declaration to this

MCU_DATA = TRICORE {
MODEL = TC27xC; /* <-- Added a C */
};

Is a BUG in the new Ifx header files that are bugged for old silicon version, so you are forced to use the new for version
by e.guidieri
Fri Mar 22, 2019 10:52 am
Forum: ERIKA Enterprise and RT-Druid v2
Topic: Error "other than 'LINUX' not supported"
Replies: 3
Views: 14165

Re: Error "other than 'LINUX' not supported"

Seems that you have instantiated a tricore1 example [that target an AUDO MCU that are singlecore AFAIK], that, long story short, is not more supported.

You have to use tricore (without 1) examples.
by e.guidieri
Tue Mar 19, 2019 6:46 pm
Forum: ERIKA Enterprise and RT-Druid v3
Topic: Build error
Replies: 5
Views: 3841

Re: Build error

I'm not sure if the following is the problem it's just a suggestion, since I cannot build for AARCH64, I don't have the environment set. Since you have no APPMODE configured, you don't need to explicity states the appmode in TASK AUTOSTART field. Try: TASK Task1 { PRIORITY = 1; AUTOSTART = TRUE; STA...
by e.guidieri
Wed Jan 23, 2019 10:21 am
Forum: ERIKA Enterprise and RT-Druid v2
Topic: TC275 - memory mapping
Replies: 1
Views: 11918

Re: TC275 - memory mapping

Hi, If this is a problem for you, you have to ask to compiler provider, compiling with EE_VERBOSE EEOPT active e providing compiling and linking command line and liker scripts to them. I have an hypothesis but it is just that: since the "problem" is in object file too, is tied to compile options not...
by e.guidieri
Wed Dec 19, 2018 3:35 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: ERIKA Timing behaviour
Replies: 1
Views: 4047

Re: ERIKA Timing behaviour

Hi, The behaviour you are describing is possible only if the interrupt of the timer in not correctly configured as ISR2, so the TASK tied to an alarm is wrongly executed in the ISR context, and the driver re-arming code is executed after the IncrementCounter/ActivateTask that originated the scheduli...
by e.guidieri
Thu Nov 15, 2018 9:41 am
Forum: ERIKA Enterprise and RT-Druid v2
Topic: erika aurix
Replies: 5
Views: 6466

Re: erika aurix

Probably the STM interrupt is not well configured as ISR2 . I suppose that you are working with Infineon iLLD. Infineon did ERIKA's integration with their drivers by them self do not giving us enough information to provide support for this environment. Sorry, but if this is the case you should conta...
by e.guidieri
Mon Nov 12, 2018 1:36 pm
Forum: ERIKA Enterprise and RT-Druid v3
Topic: Erika3 and Avr8
Replies: 20
Views: 13898

Re: Erika3 and Avr8

Hi, I just added support for USEGETSERVICEID in internal branch, just for completeness. In any case USEPARAMETERACCES will still enable OSErrorGetServiceId macro too, since having access to service parameter without knowing which service is failed, is useless, and the specifications do not forbid ex...