From 9c13ff18dab0c35ada32a318ab6e380c9b184ffe Mon Sep 17 00:00:00 2001 From: yy1717 <fctom1215@outlook.com> Date: 星期一, 06 一月 2020 11:23:32 +0800 Subject: [PATCH] 修改ndk,20200106 --- 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