[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/DataLibrary.dll b/mcu/tools/Utmdc/DataLibrary.dll
new file mode 100755
index 0000000..2ce1420
--- /dev/null
+++ b/mcu/tools/Utmdc/DataLibrary.dll
Binary files differ
diff --git a/mcu/tools/Utmdc/remove_precodegen.py b/mcu/tools/Utmdc/remove_precodegen.py
new file mode 100755
index 0000000..86650a2
--- /dev/null
+++ b/mcu/tools/Utmdc/remove_precodegen.py
@@ -0,0 +1,20 @@
+import sys
+import os
+
+codegen_single_Modem_ptr_file = sys.argv[1]
+
+if sys.version_info[0] >= 3:
+    f = open(codegen_single_Modem_ptr_file, "r", errors="ignore")
+else:
+    f = open(codegen_single_Modem_ptr_file, "r")
+file_list = f.readlines()
+f.close()
+
+new_codegen_single_Modem_ptr_content = ""
+for i, line in enumerate(file_list):
+    if "utmd_precodegen.h" not in line:
+        new_codegen_single_Modem_ptr_content += line
+
+f = open(codegen_single_Modem_ptr_file, "w")
+f.write(new_codegen_single_Modem_ptr_content)
+f.close()
\ No newline at end of file
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
diff --git a/mcu/tools/Utmdc/utmdc b/mcu/tools/Utmdc/utmdc
new file mode 100755
index 0000000..5e2e4ee
--- /dev/null
+++ b/mcu/tools/Utmdc/utmdc
Binary files differ
diff --git a/mcu/tools/Utmdc/utmdc.exe b/mcu/tools/Utmdc/utmdc.exe
new file mode 100755
index 0000000..ff1ec57
--- /dev/null
+++ b/mcu/tools/Utmdc/utmdc.exe
Binary files differ