Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: omarojo/WiGPS
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: gercunderscore4/WiGPS
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.

Commits on Jun 6, 2014

  1. Copy the full SHA
    da526c7 View commit details
  2. Copy the full SHA
    c253a82 View commit details
  3. Copy the full SHA
    2886543 View commit details
  4. Copy the full SHA
    c150326 View commit details
  5. Copy the full SHA
    d50af5d View commit details
  6. Update BasicGPS.ino

    gercunderscore4 committed Jun 6, 2014
    Copy the full SHA
    be7409e View commit details

Commits on Jun 15, 2014

  1. Update keywords.txt

    gercunderscore4 committed Jun 15, 2014
    Copy the full SHA
    0ddd245 View commit details
  2. Update WiGPS.h

    gercunderscore4 committed Jun 15, 2014
    Copy the full SHA
    20ff541 View commit details
  3. Update WiGPS.cpp

    gercunderscore4 committed Jun 15, 2014
    Copy the full SHA
    96b5dc6 View commit details
  4. Update GPRMC.h

    gercunderscore4 committed Jun 15, 2014
    Copy the full SHA
    af39ef0 View commit details
  5. Update GPRMC.cpp

    gercunderscore4 committed Jun 15, 2014
    Copy the full SHA
    c8c42ab View commit details
  6. Create GPS_Serial.ino

    gercunderscore4 committed Jun 15, 2014
    Copy the full SHA
    8730e12 View commit details
  7. Create GPS_LCD.ino

    gercunderscore4 committed Jun 15, 2014
    Copy the full SHA
    2d10ac5 View commit details

Commits on Jun 16, 2014

  1. Copy the full SHA
    1ac3ae3 View commit details
  2. Copy the full SHA
    60ce539 View commit details
  3. Delete BasicGPS.ino

    gercunderscore4 committed Jun 16, 2014
    Copy the full SHA
    8689f53 View commit details
  4. Update GPS_LCD.ino

    gercunderscore4 committed Jun 16, 2014
    Copy the full SHA
    a2aba7a View commit details
  5. Update GPS_Serial.ino

    gercunderscore4 committed Jun 16, 2014
    Copy the full SHA
    e4e1d6f View commit details
  6. Copy the full SHA
    d86d9e5 View commit details
  7. serial selection

    gercunderscore4 committed Jun 16, 2014
    Copy the full SHA
    c3d1cc2 View commit details
  8. serial selection

    gercunderscore4 committed Jun 16, 2014
    Copy the full SHA
    b0cd10e View commit details
  9. Update GPS_LCD.ino

    gercunderscore4 committed Jun 16, 2014
    Copy the full SHA
    c69e640 View commit details
  10. Copy the full SHA
    7e15ac2 View commit details
  11. Update GPS_Serial.ino

    gercunderscore4 committed Jun 16, 2014
    Copy the full SHA
    4097bc7 View commit details
Showing with 733 additions and 220 deletions.
  1. +21 −15 GPRMC.cpp
  2. +27 −18 GPRMC.h
  3. +237 −71 WiGPS.cpp
  4. +70 −43 WiGPS.h
  5. +0 −64 examples/BasicGPS/BasicGPS.ino
  6. +125 −0 examples/GPS_LCD/GPS_LCD.ino
  7. +157 −0 examples/GPS_LCD_Serial/GPS_LCD_Serial.ino
  8. +73 −0 examples/GPS_Serial/GPS_Serial.ino
  9. +23 −9 keywords.txt
36 changes: 21 additions & 15 deletions GPRMC.cpp
Original file line number Diff line number Diff line change
@@ -1,36 +1,42 @@
/*
Copyright 2013 Daniele Faugiana
This file is part of "WiGPS Arduino Library".
"WiGPS Arduino Library" is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
"WiGPS Arduino Library" is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with "WiGPS Arduino Library". If not, see <http://www.gnu.org/licenses/>.
*/
/*
* MODIFIED BY: Geoffrey Card
* FILE: GPRMC.h
* PROGRAM: rover
* PURPOSE: parse NMEA GPRMC strings
* DATE: 2014-06-14 -
* NOTES:
* MODIFICATIONS: Converted to Arduino IDE
*/

#include "GPRMC.h"
#include "application.h"
//#include "arduino.h"


GPRMC::GPRMC(char* gprmc) : String(gprmc){
/*
* Initialize the oject and parse the incoming String
* looking for all commas in the String.
*/

int p = 0;
int* c = commas;

for(int i = 0; i<COMMAS_NUMBER; i++){
p = this->indexOf(',', p);
if(p == -1){
@@ -43,7 +49,7 @@ GPRMC::GPRMC(char* gprmc) : String(gprmc){
*(c++) = (p++);
}
}

p = this->indexOf('*') + 1;
if(p > 0){
stringChecksum = this->substring(p).toInt();
@@ -63,11 +69,11 @@ int GPRMC::checksum(void){
ret_value = CHECKSUM_NOT_PERFORMED;
}
else{

// Perform the checksum and select what to return

}

return ret_value;
}

@@ -78,7 +84,7 @@ String GPRMC::findElements(int elementNumber){
* from the raw GPRMC String. Then, extract
* a subString and return it
*/

// Get the comma right BEFORE the selected element
int startComma = commas[elementNumber-1];
// Get the comma right AFTER the selected element
@@ -135,4 +141,4 @@ String GPRMC::speed(void){

String GPRMC::opMode(void){
return findElements(OPERATION_MODE);
}
}
45 changes: 27 additions & 18 deletions GPRMC.h
Original file line number Diff line number Diff line change
@@ -1,27 +1,36 @@
/*
Copyright 2013 Daniele Faugiana
This file is part of "WiGPS Arduino Library".
"WiGPS Arduino Library" is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
"WiGPS Arduino Library" is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with "WiGPS Arduino Library". If not, see <http://www.gnu.org/licenses/>.
*/
#include "application.h"
/*
* MODIFIED BY: Geoffrey Card
* FILE: GPRMC.h
* PROGRAM: rover
* PURPOSE: parse NMEA GPRMC strings
* DATE: 2014-06-14 -
* NOTES:
* MODIFICATIONS: Converted to Arduino IDE
*/

#ifndef _GPRMC_H
#define _GPRMC_H

//#include <arduino.h>
#include <Arduino.h>
#include <WString.h>

#define COMMAS_NUMBER 12

@@ -48,39 +57,39 @@ typedef unsigned int uint;


class GPRMC: public String {

/*
* This class inherits from the C++
* String class and expands it to manipulate
* particular types of Strings which are
* GPRMC String from the NMEA protocol.
*/

private:

int commas[COMMAS_NUMBER]; // Array of commas positions in the raw String
int stringChecksum; // The String checksum received value

String findElements(int); // Internal element finder for the parsing

public:

GPRMC(char*);

int checksum(void); // Check if the String is valid or not

String UTCtime(void); // Return the UTC time
String dataValid(void); // Return the data valid character
String UTCdate(void); // Return the UTC date
String latitudeDeg(void); // Return the latitude degrees
String latitudeDeg(void); // Return the latitude degrees ddmm.mmmmm
String latitudeRef(void); // Return the latitude reference N/S
String longitudeDeg(void); // Return the longitude degrees
String longitudeRef(void); // Return the longitude reference W/E
String course(void); // Return the course degrees
String speed(void); // Return the speed in knots
String opMode(void); // Return the operation mode


};

#endif
#endif // _GPRMC_H
Loading