Hi everyone,
I have a strange error in my SYS/BIOS project and I would like to know, what is going on (or isn't).
When I call BIOS_start() from my main, somewhere in the initialization part of SYS/BIOS, an error is raised, which results in a call to the abort() function, where my software then stays forever.
Now I looked for ways to find some kind of logging, so I could see what goes wrong, and I found that in my .cfg file I can set a logger for common errors
.cfg file:
...
Error.common$.logger = loggerBuf;
...
where loggerBuf is a circular buffer, which I created before.
When starting the software and running it (so that the error occurs), I can see in my ROV, that there is an entry in my loggerBuf.
I attached y screenshot, where the entry can be seen.
Now, how should I read this? What does the eventId and the arguments tell me?
I was not able to find any documentation of this.
Can you help me with this?
Thanks!