I am having a lot of difficulty getting the Flexbus to work without Bus Faults. I noticed a routine in CPU.C that has a syntax error in it, though it builds. I don't know what this routine does.. can anyone explain it to me?
I have attached an image from the cpu.c file. Please help.
Solved! Go to Solution.
Hi,
the syntax errors repoted by the editor are shown because the editor does not understand inline assembler in C module.
The method Cpu_SetBASEPRI initialiyed the priority register BASEPRI during the initialization. The initialization influences what interrupts may occur (according to their priority level).
best regards
Petr Hradsky
Processor Expert Support Team
Hi,
the syntax errors repoted by the editor are shown because the editor does not understand inline assembler in C module.
The method Cpu_SetBASEPRI initialiyed the priority register BASEPRI during the initialization. The initialization influences what interrupts may occur (according to their priority level).
best regards
Petr Hradsky
Processor Expert Support Team
OK.. thank you. Good to know.