Search found 24 matches

by szalokicsiga
Wed Mar 28, 2018 10:53 am
Forum: ERIKA Enterprise and RT-Druid v2
Topic: ISO26262 compliance
Replies: 1
Views: 2717

ISO26262 compliance

Hi,

Is Erika Enterprise v2 compliant with ISO26262 standard? (Or Erika v3 ?)

Thanks in advance!

Best regards,
Gergo
by szalokicsiga
Thu Sep 21, 2017 12:54 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: Task overrun
Replies: 1
Views: 2499

Task overrun

Hi,
Is it possible to detect somehow task overrun? I mean if a task wants to be started, but it has not finished running yet.
For example cycle time is 5ms, but runtime of the task is 10ms. Can we detect this?

Thanks in advance!
by szalokicsiga
Mon Sep 11, 2017 2:01 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: Erika v3 on TriCore Aurix
Replies: 3
Views: 14494

Re: Erika v3 on TriCore Aurix

Hi,

Thank you, very good news!
by szalokicsiga
Fri Sep 08, 2017 10:03 am
Forum: ERIKA Enterprise and RT-Druid v2
Topic: Erika v3 on TriCore Aurix
Replies: 3
Views: 14494

Erika v3 on TriCore Aurix

Hi,

Do you know when will be released Erika v3 for Tricore Aurix platform?

Thanks in advance!
by szalokicsiga
Thu May 18, 2017 2:25 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: crystal frequency
Replies: 0
Views: 3688

crystal frequency

Hi!

I'm working with a tc275 Infineon processor. Is there a way to configure the onboard crystal frequency from the default 20Mhz to 8Mhz in the oil file, without modifying core files?

Thank you!
by szalokicsiga
Thu Mar 02, 2017 12:55 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: TriCore TC3xx
Replies: 2
Views: 2885

TriCore TC3xx

Hi!

Does Erika support TriCore TC3xx microcontroller?
Thank you in advance!

Gergő
by szalokicsiga
Thu Jan 05, 2017 1:07 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: SuspendAllInterrupts/SuspendOSInterrupts
Replies: 2
Views: 2914

Re: SuspendAllInterrupts/SuspendOSInterrupts

Thank you for the fast reply!
I'm working on TriCore architecture.
by szalokicsiga
Thu Jan 05, 2017 12:54 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: SuspendAllInterrupts/SuspendOSInterrupts
Replies: 2
Views: 2914

SuspendAllInterrupts/SuspendOSInterrupts

Hi!

Is it possible that EE_oo_SuspendAllInterrupts and EE_oo_SuspendOSInterrupts are the same? Because as I see, the source code is the same (except the ORTI part, but I think that's not relevant).
In both function EE_hal_suspendIRQ() is called and it disables all interrupts, right?

Thank you!
by szalokicsiga
Wed Dec 21, 2016 10:13 am
Forum: ERIKA Enterprise and RT-Druid v2
Topic: StartOS EE_rq_insert stuck in while loop
Replies: 6
Views: 4300

Re: StartOS EE_rq_insert stuck in while loop

I'm just trying to integrate the OS into an existing project in a company. Just basic cyclic tasks and ISRs.
by szalokicsiga
Mon Dec 19, 2016 3:02 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: StartOS EE_rq_insert stuck in while loop
Replies: 6
Views: 4300

Re: StartOS EE_rq_insert stuck in while loop

Sorry, my bad. NVM_init accidentally wrote zeros to the memory, where is EE_th_next is stored...
Thank you for your help!
by szalokicsiga
Mon Dec 19, 2016 1:01 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: StartOS EE_rq_insert stuck in while loop
Replies: 6
Views: 4300

Re: StartOS EE_rq_insert stuck in while loop

Actually I didn't modify anything in that, so I don't understand.
by szalokicsiga
Mon Dec 19, 2016 10:55 am
Forum: ERIKA Enterprise and RT-Druid v2
Topic: StartOS EE_rq_insert stuck in while loop
Replies: 6
Views: 4300

StartOS EE_rq_insert stuck in while loop

Hi! In EE_oo_StartOS() my program stucks in EE_rq_insert() function in the following while loop: p = EE_NIL; q = EE_rq_first; prio = EE_th_ready_prio[t]; while ((q != EE_NIL) && (prio <= EE_th_ready_prio[q])) { p = q; q = EE_th_next[q]; } I couldn't find out why is it stuck. The values are: q=0 p=0 ...
by szalokicsiga
Mon Dec 05, 2016 1:31 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: generate symbol to makefile
Replies: 4
Views: 3562

Re: generate symbol to makefile

I'm working in a company.
by szalokicsiga
Fri Dec 02, 2016 12:09 pm
Forum: ERIKA Enterprise and RT-Druid v2
Topic: generate symbol to makefile
Replies: 4
Views: 3562

Re: generate symbol to makefile

Thank you, solved it!

Now I need one more thing. At the oil generation phase, is it possible to set, that eecfg.h and eecfg.c should be generated into an other folder? (so not into Debug folder)
I cannot find it, where is it defined, to be generated into the Debug folder.

Thank you
by szalokicsiga
Fri Dec 02, 2016 8:52 am
Forum: ERIKA Enterprise and RT-Druid v2
Topic: generate symbol to makefile
Replies: 4
Views: 3562

generate symbol to makefile

Hi! Is it possible to generate a symbol to the generated makefile from e.g. the OIL file? I would like to change the name of the .elf file. Now it is working like this: TARGET := $(TARGET_NAME).elf And I would need something like this: TARGET := $(PROJECT_NAME).elf, but for that I need this variable...