[Feature][T800-191]Modify epo's retry mechanism,change to once per second, a total of 30 times
Only Configure :No
Affected branch: MR3.0-Merge-v2.0-ZK
Affected module: GNSS
Is it affected on both ZXIC and MTK:only MTK
Self-test: Yes
Doc Update: No
Change-Id: I355f46d15e29fbc90e43e37a8269778de334b200
diff --git a/src/connectivity/gps/2.0/mtk_mnld/mnld_entity/inc/epo.h b/src/connectivity/gps/2.0/mtk_mnld/mnld_entity/inc/epo.h
old mode 100644
new mode 100755
index 4dbf323..6f6ceb3
--- a/src/connectivity/gps/2.0/mtk_mnld/mnld_entity/inc/epo.h
+++ b/src/connectivity/gps/2.0/mtk_mnld/mnld_entity/inc/epo.h
@@ -13,8 +13,8 @@
#define MTK_EPO_ONE_SV_SIZE 72
#define SECONDS_PER_HOUR (60*60)
#define EPO_DL_MAX_RETRY_TIME 3 //The max retry time of curl_easy_download fail
-#define EPO_INVALIDE_DL_MAX_RETRY_TIME 3 //The max retry time of whole download process
-#define EPO_INVALIDE_DL_RETRY_SLEEP (100*1000) //100 ms
+#define EPO_INVALIDE_DL_MAX_RETRY_TIME 30 //The max retry time of whole download process
+#define EPO_INVALIDE_DL_RETRY_SLEEP (1000*1000) // 1s
#define MAX_EPO_PIECE 10
#define EPO_MERGE_FULL_FILE -1
#define EPO_MD5_AVAILABLE_BIT (1<<0)