From 8321a16a33a97db62391a5b05089d86335ec9d64 Mon Sep 17 00:00:00 2001 From: Chris Ring Date: Tue, 12 Mar 2013 16:37:42 -0700 Subject: [PATCH] Trace: Update ti.trace.SysMin to be compatible with XDC 3.25 XDC 3.25 includes device support we will need, as well as support for CCS 5.4, a key development environment. Unfortunately, there is a small compatibility break between XDC 3.24 and 3.25 for the [rare] modules that implement xdc.runtime.ISystemSupport. Unfortunately, ti.trace.SysMin is susceptible to this break, and requires a slight change. Prior to this commit, we must use XDC 3.24. After this commit, we must use XDC 3.25. --- packages/ti/trace/SysMin.c | 2 +- packages/ti/trace/SysMin.xdc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ti/trace/SysMin.c b/packages/ti/trace/SysMin.c index d7ed81c..339ce46 100644 --- a/packages/ti/trace/SysMin.c +++ b/packages/ti/trace/SysMin.c @@ -69,7 +69,7 @@ Int SysMin_Module_startup(Int phase) /* * ======== SysMin_abort ======== */ -Void SysMin_abort(String str) +Void SysMin_abort(CString str) { Char ch; diff --git a/packages/ti/trace/SysMin.xdc b/packages/ti/trace/SysMin.xdc index d3adb87..86f4e96 100644 --- a/packages/ti/trace/SysMin.xdc +++ b/packages/ti/trace/SysMin.xdc @@ -153,7 +153,7 @@ module SysMin inherits xdc.runtime.ISystemSupport { * * @see ISystemSupport#abort */ - override Void abort(String str); + override Void abort(CString str); /*! * ======== exit ======== -- 2.39.2