[Feature]Upload Modem source code

Change-Id: Id4294f30faced84d3e6fd6d5e61e1111bf287a37
diff --git a/mcu/protocol/interface/lte/common_def.h b/mcu/protocol/interface/lte/common_def.h
new file mode 100644
index 0000000..45b550f
--- /dev/null
+++ b/mcu/protocol/interface/lte/common_def.h
@@ -0,0 +1,26 @@
+#ifndef _MTK_LTE_COMMON_H_
+#define _MTK_LTE_COMMON_H_
+
+
+#define FLAG_CHK(v, ofst)		((v) & (1 << (ofst)))
+#define FLAG_SET(v, ofst)		(v) |= 1 << (ofst)
+#define FLAG_CLR(v, ofst)		(v) &= ~(1 << (ofst))
+
+#ifdef MIN
+#undef MIN
+#endif
+#define MIN(x, y)				((x) > (y) ? (y) : (x))
+
+#ifdef MAX
+#undef MAX
+#endif
+#define MAX(x, y)				((x) > (y) ? (x) : (y))
+
+#define REDUNDANT_ASSERT(x)		ASSERT(x)
+
+/*--------------------------------------------------------------------------
+ * EMBMS configuration 
+ *--------------------------------------------------------------------------*/
+#define MAX_EMBMS_FREQ_SUPPORT     (2)
+
+#endif // _LTE_SECURITY_CMN_FUNC_H_