Hi, I am trying to create a simple project for AT91FR40162 using RealView compiler. It contains only 1 file main.c:
#include <91R40008.h> void main(void) {;}
compiling main.c... linking... PROJEKTAS.axf: error: L6913E: Invalid value for --ro-base. Target not created
OK, so look at what the message is actually telling you:
error: L6913E: Invalid value for --ro-base
In the EVAL Mode, you need to specify a address for the RO and RW Base manually. This is done under Project - Options - Linker. See example projects like C:\Keil\ARM\RV\Examples\Hello. Reinhard