Hi,
is there a way to distinguish between "Release" and "Debug" build profile (CCS build configuration) in a SYS/Bios .cfg file?
The .cfg file I am using is in a "CCS RTSC Configuration" project.
I tried the following code, but it always returns "release":
var Main = xdc.useModule('xdc.tools.configuro.ccs.Main');
var params = new Main.Params;
print("Build profile: "+params.profile);
Is there an other way to figure this out?
Thanking you in anticipation,
Sebastian