]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/commitdiff
ping_rpmsg: Shut off diagnostic debug messages on BIOS side test.
authorG Anthony <a0783926@ti.com>
Thu, 28 Mar 2013 00:54:36 +0000 (17:54 -0700)
committerG Anthony <a0783926@ti.com>
Mon, 1 Apr 2013 21:15:25 +0000 (14:15 -0700)
Commented out Diags settings in cfg file to eliminate chatter.

Signed-off-by: G Anthony <a0783926@ti.com>
packages/ti/ipc/tests/ping_rpmsg_common.cfg.xs

index 6e84fe75a566781146cb2c2677ad36180c562924..074c862ad118eb225f3ff0bce44f21c39babc6cd 100644 (file)
@@ -75,10 +75,13 @@ if (Program.cpu.deviceName == "OMAPL138") {
     Timer.defaultHalf = Timer.Half_LOWER;
     Clock.timerId = 1;
 
+    /*  COMMENT OUT TO SHUT OFF LOG FOR BENCHMARKS: */
+    /*
     Diags.setMaskMeta("ti.ipc.family.omapl138.Interrupt", Diags.USER1,
         Diags.ALWAYS_ON);
     Diags.setMaskMeta("ti.ipc.family.omapl138.VirtQueue", Diags.USER1,
         Diags.ALWAYS_ON);
+    */
 }
 else if (Program.platformName.match(/6614/)) {
     var VirtQueue = xdc.useModule('ti.ipc.family.tci6614.VirtQueue');
@@ -215,9 +218,11 @@ Defaults.common$.logger = LoggerSys.create(LoggerSysParams);
 var Text = xdc.useModule('xdc.runtime.Text');
 Text.isLoaded = true;
 var Registry = xdc.useModule('xdc.runtime.Registry');
+/*
 Registry.common$.diags_INFO  = Diags.ALWAYS_ON;
 Registry.common$.diags_STATUS = Diags.ALWAYS_ON;
 Registry.common$.diags_LIFECYCLE = Diags.ALWAYS_ON;
+*/
 Diags.setMaskEnabled = true;
 
 var Main = xdc.useModule('xdc.runtime.Main');