2004-06-30 04:30 AM
Load execution image into flash with ARM RealView
2004-06-27 09:57 PM
2004-06-27 10:09 PM
Have a look at STR71x SOFTWARE DEVELOPMENT GETTING STARTED on this website -
There are a lot of other choices for arm compiler, depends how much you want to spend, and the length of the learning curve. Arm Realview, Arm ADS, Keil, IAR, Green Hills, Rowley, GCC - just a selection of Arm compilers. My personal favourite is GCC. Regards sjo2004-06-28 04:07 AM
I had read the listed documents for related chapters;
however, I still can't find the way to move a program initially mapped on RAM to STR710's internal flash. I can change the starting address and size on memory mapping table, but how can I asign the mapping address of the program ? I also read documents from ARM regarding RealView Debugger.. No clue..2004-06-29 03:33 PM
Ya! I got it !
I worked on the project Example2 of AN1774.zip and set the following in project property. [Project Properties][Build][Link Advanced] ->Ro base = 0x40000000 ->Rw base = 0x20000000 ->First = 71x_vect.o I think my previous problem was that I didn't put 71x_vect.o to first.2004-06-30 04:30 AM
Hello shinn,
I think also that what you have done in the project proprieties can be done using the scatter file (scat.scf) as following for example . Flash 0x40000000 0x10000 { Flash 0x40000000 { 71x_vect.o (Vect, +First) 71x_init.o(Init) * (+RO) } RAM 0x20000000 { * (+RW) * (+ZI) } }