From 10e4ece2f9c58fffc4ab9c3c2c5be95941005888 Mon Sep 17 00:00:00 2001
From: endian11 <Dana_Lee1016@126.com>
Date: 星期一, 06 一月 2020 11:36:11 +0800
Subject: [PATCH] Merge branch 'master' of https://gitee.com/endian11/DriveJudge

---
 lib/src/main/cpp/rtk_module/rtk.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/src/main/cpp/rtk_module/rtk.cpp b/lib/src/main/cpp/rtk_module/rtk.cpp
index 28d7bf8..dcf3cb0 100644
--- a/lib/src/main/cpp/rtk_module/rtk.cpp
+++ b/lib/src/main/cpp/rtk_module/rtk.cpp
@@ -294,8 +294,8 @@
         gpsStatus.bcd_time[1] = ((MM/10)<<4) + (MM%10);
         gpsStatus.bcd_time[2] = ((DD/10)<<4) + (DD%10);
         gpsStatus.bcd_time[3] = ((hh/10)<<4) + (hh%10);
-        gpsStatus.bcd_time[4] = ((ss/10)<<4) + (ss%10);
-        gpsStatus.bcd_time[5] = ((mm/10)<<4) + (mm%10);
+        gpsStatus.bcd_time[4] = ((mm/10)<<4) + (mm%10);
+        gpsStatus.bcd_time[5] = ((ss/10)<<4) + (ss%10);
 
         recved_gprmc_time = AppTimer_GetTickCount();
 

--
Gitblit v1.8.0