[Feature]Upload Modem source code
Change-Id: Id4294f30faced84d3e6fd6d5e61e1111bf287a37
diff --git a/mcu/protocol/interface/agps/lbs_imc_struct.h b/mcu/protocol/interface/agps/lbs_imc_struct.h
new file mode 100644
index 0000000..1acc1a4
--- /dev/null
+++ b/mcu/protocol/interface/agps/lbs_imc_struct.h
@@ -0,0 +1,37 @@
+#ifndef _IMC_LBS_STRUCT_H_
+#define _IMC_LBS_STRUCT_H_
+
+#include "kal_general_types.h"
+#include "kal_public_defs.h"
+
+
+/******************************************************************************
+ * WFC location info
+ *****************************************************************************/
+#define IMS_MAX_TIME_STAMP_LENGTH 32
+typedef struct
+{
+ kal_int64 lat; //double lat
+ kal_int64 lng; //double lng
+ kal_int32 acc;
+} lbs_location_struct;
+
+typedef struct
+{
+ LOCAL_PARA_HDR
+ kal_bool location_state;
+} imc_lbs_pos_ntf_struct;
+/**
+ * Description
+ * - recivied AGPS location info by LBS
+ *
+ * Direction
+ * - LBS -> IMC
+ */
+typedef struct
+{
+ LOCAL_PARA_HDR
+ lbs_location_struct loc_info;
+} imc_lbs_pos_ind_struct;
+
+#endif /* _IMC_LBS_STRUCT_H_ */