[Feature]Upload Modem source code
Change-Id: Id4294f30faced84d3e6fd6d5e61e1111bf287a37
diff --git a/mcu/interface/service/config/mt_config.h b/mcu/interface/service/config/mt_config.h
new file mode 100644
index 0000000..c3d573f
--- /dev/null
+++ b/mcu/interface/service/config/mt_config.h
@@ -0,0 +1,37 @@
+#ifndef MT_CONFIG_H
+#define MT_CONFIG_H
+
+/***************************************
+Template:
+
+XXXX stand for MT Group Name e.g., "EL1D"
+
+*MT Parent:
+typedef enum {
+ MT_XXXX_IRQ_0 = decimal1,
+ MT_XXXX_IRQ_1 = decimal2
+} MT_XXXX_IRQ_TYPE ;
+
+
+*MT Child Func:
+typedef enum {
+ MT_XXXX_yourFuncNameA,
+ MT_XXXX_yourFuncNameB = 9,
+ MT_XXXX_yourFuncNameC
+} MT_XXXX_FUNC_TYPE ;
+
+***************************************/
+
+
+typedef enum {
+ MT_EL1CD_IRQ_0 = 101,
+ MT_EL1CD_IRQ_1 = 102,
+ MT_EL1CD_IRQ_2 = 103,
+ MT_EL1CD_IRQ_3 = 104
+} MT_EL1CD_IRQ_TYPE;
+
+
+#include "el1cd_mtpublic.h"
+
+
+#endif