Home | History | Annotate | Download | only in libloc_api_50001

Lines Matching defs:sentence

45    send out NMEA sentence
51 Total length of the nmea sentence
77 Total length of the nmea sentence
128 char sentence[NMEA_SENTENCE_MAX_LENGTH] = {0};
129 char* pMarker = sentence;
130 int lengthRemaining = sizeof(sentence);
174 for (uint8_t i = 0; i < 12; i++) // only the first 12 sv go in sentence
209 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
210 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
216 pMarker = sentence;
217 lengthRemaining = sizeof(sentence);
273 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
274 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
280 pMarker = sentence;
281 lengthRemaining = sizeof(sentence);
426 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
427 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
433 pMarker = sentence;
434 lengthRemaining = sizeof(sentence);
557 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
558 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
563 strlcpy(sentence, "$GPGSA,A,1,,,,,,,,,,,,,,,", sizeof(sentence));
564 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
565 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
567 strlcpy(sentence, "$GPVTG,,T,,M,,N,,K,N", sizeof(sentence));
568 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
569 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
571 strlcpy(sentence, "$GPRMC,,V,,,,,,,,,,N", sizeof(sentence));
572 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
573 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
575 strlcpy(sentence, "$GPGGA,,,,,,0,,,,,,,,", sizeof(sentence));
576 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
577 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
610 char sentence[NMEA_SENTENCE_MAX_LENGTH] = {0};
611 char* pMarker = sentence;
612 int lengthRemaining = sizeof(sentence);
642 // no svs in view, so just send a blank $GPGSV sentence
643 strlcpy(sentence, "$GPGSV,1,1,0,", sizeof(sentence));
644 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
645 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
655 pMarker = sentence;
656 lengthRemaining = sizeof(sentence);
706 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
707 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
720 // no svs in view, so just send a blank $GLGSV sentence
721 strlcpy(sentence, "$GLGSV,1,1,0,", sizeof(sentence));
722 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
723 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
733 pMarker = sentence;
734 lengthRemaining = sizeof(sentence);
784 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
785 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
795 strlcpy(sentence, "$GPGSA,A,1,,,,,,,,,,,,,,,", sizeof(sentence));
796 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
797 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
799 strlcpy(sentence, "$GPVTG,,T,,M,,N,,K,N", sizeof(sentence));
800 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
801 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
803 strlcpy(sentence, "$GPRMC,,V,,,,,,,,,,N", sizeof(sentence));
804 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
805 loc_eng_nmea_send(sentence, length, loc_eng_data_p);
807 strlcpy(sentence, "$GPGGA,,,,,,0,,,,,,,,", sizeof(sentence));
808 length = loc_eng_nmea_put_checksum(sentence, sizeof(sentence));
809 loc_eng_nmea_send(sentence, length, loc_eng_data_p);