Hi
I need hard real-time capabilities for my application. I'm looking to code in ARM assembly so I can can manage cycles exactly. Ideally I need to have code launched by a timer interrupt that is cycle-exact (the other code in the main loop can be coded in C).
This is my first experience with an ARM MCU (my experience is in AVR/PIC).
I was wondering what tools I use to assemble my code and which tool I use to write the binary file to the stellaris?
Also If I go down the hybrid route (C for everything except the timer-launched routine), should I just use inline ASM for the timer stuff? How do I do that? (does the compiler support the __asm__ expression)?
Thanks!