AURIX™ Forum Discussions
Sort by:
AURIX™
Hi,after flashing (iROM) the LCDDemo provided by the Free Aurix Entry Toolchain, the TC2X7 V1.0 Application Kit Board is performing an reset within an...
Show More
Hi,
after flashing (iROM) the LCDDemo provided by the Free Aurix Entry Toolchain, the TC2X7 V1.0 Application Kit Board is performing an reset within an second after every startup of the application. Therefore i can't flash the board by the Toolchain anymore, because no connection can be estabiled or the board is disconnected after the board resets.
Is there any possiblity to halt the board after the startup and stop the execution of the the application code e.g. by an hardware pin, so that i can erase the application code or flash a new one?
I'm thankful for every hint, which could lead to an solution of my problem!
Best regards
Lukas Show Less
after flashing (iROM) the LCDDemo provided by the Free Aurix Entry Toolchain, the TC2X7 V1.0 Application Kit Board is performing an reset within an second after every startup of the application. Therefore i can't flash the board by the Toolchain anymore, because no connection can be estabiled or the board is disconnected after the board resets.
Is there any possiblity to halt the board after the startup and stop the execution of the the application code e.g. by an hardware pin, so that i can erase the application code or flash a new one?
I'm thankful for every hint, which could lead to an solution of my problem!
Best regards
Lukas Show Less
AURIX™
in the define:#define IFX_INTERRUPT_INTERNAL(isr, vectabNum, prio) void __interrupt(prio) __vector_table(vectabNum) isr(void)what is the "vectabNum"? ...
Show More
in the define:
#define IFX_INTERRUPT_INTERNAL(isr, vectabNum, prio) void __interrupt(prio) __vector_table(vectabNum) isr(void)
what is the "vectabNum"?
thank you,
Charlie Show Less
#define IFX_INTERRUPT_INTERNAL(isr, vectabNum, prio) void __interrupt(prio) __vector_table(vectabNum) isr(void)
what is the "vectabNum"?
thank you,
Charlie Show Less
AURIX™
Hello Support,With SSWWAIT=1, there is Foreground Secure Boot feature enabled in HSM.Looks like Host SSW Software will check for HSM2HTF.0 as 1 before...
Show More
Hello Support,
With SSWWAIT=1, there is Foreground Secure Boot feature enabled in HSM.
Looks like Host SSW Software will check for HSM2HTF.0 as 1 before jumping from Host SSW to Host User Code.
During background secure boot [SSWWAIT=0], HSM2HTF.0=1 is done by HSM BOS Code [HSM ROM Code] unconditionally.
Question is during foreground secure boot [SSWWAIT=1], which code set HSM2HTF.0? Is it done by HSM User Code and never done by HSM BOS Code?
I am assuming yes.
Please confirm.
Best Regards Show Less
With SSWWAIT=1, there is Foreground Secure Boot feature enabled in HSM.
Looks like Host SSW Software will check for HSM2HTF.0 as 1 before jumping from Host SSW to Host User Code.
During background secure boot [SSWWAIT=0], HSM2HTF.0=1 is done by HSM BOS Code [HSM ROM Code] unconditionally.
Question is during foreground secure boot [SSWWAIT=1], which code set HSM2HTF.0? Is it done by HSM User Code and never done by HSM BOS Code?
I am assuming yes.
Please confirm.
Best Regards Show Less
AURIX™
Hello,What are the Root causes of SMU3[6] alarm in Aurix TC265D? The clock configurations are proper according to the Errata sheet (5 MHz is selected ...
Show More
Hello,
What are the Root causes of SMU3[6] alarm in Aurix TC265D?
The clock configurations are proper according to the Errata sheet (5 MHz is selected as target monitoring frequency).
There are no other additional alarms are triggered and this SMU alarm is raised sporadically. Show Less
What are the Root causes of SMU3[6] alarm in Aurix TC265D?
The clock configurations are proper according to the Errata sheet (5 MHz is selected as target monitoring frequency).
There are no other additional alarms are triggered and this SMU alarm is raised sporadically. Show Less
AURIX™
Hello all,Does anyone have an example on how to perform Converter Diagnostics on the VADC?How should the Global Test Functions Register be configured ...
Show More
Hello all,
Does anyone have an example on how to perform Converter Diagnostics on the VADC?
How should the Global Test Functions Register be configured and how do I actually run the test?
Thanks,
Cecilia Show Less
Does anyone have an example on how to perform Converter Diagnostics on the VADC?
How should the Global Test Functions Register be configured and how do I actually run the test?
Thanks,
Cecilia Show Less
AURIX™
Hello Support Team,-Can you provide me with the type of Evita for this part number TC234LP32F200NACKXUMA1. IS it Full HSM or Medium HSM?-Also can y...
Show More
Hello Support Team,
-Can you provide me with the type of Evita for this part number TC234LP32F200NACKXUMA1. IS it Full HSM or Medium HSM?
-Also can you provide me if this part number support SHE HIS security standards?
-Also is this part number Supports AutoSAR technology? and If yes what is its version and what is its availability date?
-Is there safety documents/Manual studies related to this product?
Thanks
Ahmed Sabry Show Less
-Can you provide me with the type of Evita for this part number TC234LP32F200NACKXUMA1. IS it Full HSM or Medium HSM?
-Also can you provide me if this part number support SHE HIS security standards?
-Also is this part number Supports AutoSAR technology? and If yes what is its version and what is its availability date?
-Is there safety documents/Manual studies related to this product?
Thanks
Ahmed Sabry Show Less
AURIX™
Hi, I have just received my Application Kit and when I plugged it in the demo code ran correctly. I have just written my 'blinky' code in BIFACES and ...
Show More
Hi,
I have just received my Application Kit and when I plugged it in the demo code ran correctly. I have just written my 'blinky' code in BIFACES and downloaded it to the Application Kit but when I try and run it the reset LED flashes a few times and then seems to sit in reset.
#8042000 11974 Show Less
I have just received my Application Kit and when I plugged it in the demo code ran correctly. I have just written my 'blinky' code in BIFACES and downloaded it to the Application Kit but when I try and run it the reset LED flashes a few times and then seems to sit in reset.
#8042000 11974 Show Less
AURIX™
HelloI am having trouble reading the A11 Register.I tried: __mfcr(CPU_A11)(&CPU0_A11)->B.ADDR *((unsigned int *)&CPU0_A11)//Also Tried with inline ass...
Show More
Hello
I am having trouble reading the A11 Register.
I tried:
But none seem to work. Can someone please help me?
Thank you very much. Show Less
I am having trouble reading the A11 Register.
I tried:
__mfcr(CPU_A11)
(&CPU0_A11)->B.ADDR
*((unsigned int *)&CPU0_A11)
//Also Tried with inline assembly
int *res;
__asm__ volatile ("mov.aa %0, %%a11": "=a" (res) : :"a11");
return res;
But none seem to work. Can someone please help me?
Thank you very much. Show Less
AURIX™
Hello Support,Can you please provide me the ARM Revision Number of TRM which is used for HSM Cortex-M3 within Aurix 2G family?I couldn't find any refe...
Show More
Hello Support,
Can you please provide me the ARM Revision Number of TRM which is used for HSM Cortex-M3 within Aurix 2G family?
I couldn't find any reference within the HSM Target Spec.

Best Regards Show Less
Can you please provide me the ARM Revision Number of TRM which is used for HSM Cortex-M3 within Aurix 2G family?
I couldn't find any reference within the HSM Target Spec.
Best Regards Show Less
Forum Information
AURIX™
In this forum you can post your questions, comments and feedback about the 32-bit AURIX™ TriCore™ Microcontroller. The AURIX™ offers the highest scalability in performance, memory & peripherals across application. It is a safe and secure companion chip, meeting both the ISO functional safety standards and EVITA full security standards. Here you can also find the links to the latest board pages, SW and Tools GitHub, trainings, documents and FAQs
Important links
Overview
Documentations
Others
Related Forums