We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hello,
is it quite normal, that a arm9 microcontroller starts in the supervisor mode? How could I changed the mode into user mode? Or is it better to work in the supervisor mode?
I've only the startup file and a short main.c file
#include <stdio.h> int main(void) { while(1); }
In the startup file I only can see that every mode will be initialized.
best regards tobi
If I wrote
timer.o (+RO)
in the executing section EXTERN-FLASH
I get the warning, that the compiler will removed unused sections (timer.o (RO)).
But I want to have all RO data from the c-file timer.c within the external flash.
tobi