Hi,
I have a few doubts regarding the inclusion of exception handling and memory protection services of SYS BIOS.
- What effect does inclusion of Exception Handling and Memory protection in the CFG file have on the final build.
e.g.
If I am just adding the following two lines in the CFG file:-
var MemPro = xdc.useModule('ti.sysbios.family.c64p.MemoryProtect');
var Exception = xdc.useModule('ti.sysbios.family.c64p.Exception');
what would be the resultant effect in the SYS BIOS configuration due to this.
- What is the inter-dependence of Exception handling and Memory Protection module in SYSBIOS.
- Is there a way we can use Exception handling and memory protection support in processor without using the SYSBIOS libraries. I mean, is it possible that just through configuration of MPU registers and MAR register for the range of memory we are interested in and some other exception handling related register changes?
- Is it possible that the new code and data added to SYSBIOS due to addition of Exception Handling and Memory protection modules in CFG file can be directed to a different segment of memory through use of command files instead of ending up where other SYSBIOS modules are going?
Thanks,
Vijit
EDIT: Corrected some errors