Promotion of location.lnx.1.0-00015.
CRs Change ID Subject -------------------------------------------------------------------------------------------------------------- 974592 Ifb9bfe9b3afff224fd3cfe6ec718f3c3cbe45987 Remove unneeded nmea_cb print Change-Id: Ibe40352b5da91e31bb9e7f329846e01662f41970 CRs-Fixed: 974592
This commit is contained in:
commit
4736e4b11d
2 changed files with 0 additions and 2 deletions
|
@ -902,7 +902,6 @@ void LocEngReportNmea::proc() const {
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
gettimeofday(&tv, (struct timezone *) NULL);
|
gettimeofday(&tv, (struct timezone *) NULL);
|
||||||
int64_t now = tv.tv_sec * 1000LL + tv.tv_usec / 1000;
|
int64_t now = tv.tv_sec * 1000LL + tv.tv_usec / 1000;
|
||||||
CALLBACK_LOG_CALLFLOW("nmea_cb", %d, mLen);
|
|
||||||
|
|
||||||
if (locEng->nmea_cb != NULL)
|
if (locEng->nmea_cb != NULL)
|
||||||
locEng->nmea_cb(now, mNmea, mLen);
|
locEng->nmea_cb(now, mNmea, mLen);
|
||||||
|
|
|
@ -59,7 +59,6 @@ void loc_eng_nmea_send(char *pNmea, int length, loc_eng_data_s_type *loc_eng_dat
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
gettimeofday(&tv, (struct timezone *) NULL);
|
gettimeofday(&tv, (struct timezone *) NULL);
|
||||||
int64_t now = tv.tv_sec * 1000LL + tv.tv_usec / 1000;
|
int64_t now = tv.tv_sec * 1000LL + tv.tv_usec / 1000;
|
||||||
CALLBACK_LOG_CALLFLOW("nmea_cb", %p, pNmea);
|
|
||||||
if (loc_eng_data_p->nmea_cb != NULL)
|
if (loc_eng_data_p->nmea_cb != NULL)
|
||||||
loc_eng_data_p->nmea_cb(now, pNmea, length);
|
loc_eng_data_p->nmea_cb(now, pNmea, length);
|
||||||
LOC_LOGD("NMEA <%s", pNmea);
|
LOC_LOGD("NMEA <%s", pNmea);
|
||||||
|
|
Loading…
Reference in a new issue