[Feature][Modem]Update MTK MODEM V1.6 baseline version: MOLY.NR15.R3.MD700.IVT.MP1MR3.MP.V1.6

MTK modem version: MT2735_IVT_MOLY.NR15.R3.MD700.IVT.MP1MR3.MP.V1.6.tar.gz
RF  modem version: NA

Change-Id: I45a4c2752fa9d1a618beacd5d40737fb39ab64fb
diff --git a/mcu/tools/Utmdc/rename_ps_trace.py b/mcu/tools/Utmdc/rename_ps_trace.py
new file mode 100755
index 0000000..8a442c2
--- /dev/null
+++ b/mcu/tools/Utmdc/rename_ps_trace.py
@@ -0,0 +1,11 @@
+import sys
+import os
+
+ps_trace_folder = sys.argv[1]
+
+for subdir, dirs, files in os.walk(ps_trace_folder):
+    for file in files:
+        if file.endswith(".h"):
+            filepath = subdir + os.sep + file
+            newfilepath = subdir + os.sep + file.replace(".h", "_precodegen.h")
+            os.rename(filepath, newfilepath)
\ No newline at end of file