Skip to content

Commit

Permalink
fix GPS method name
Browse files Browse the repository at this point in the history
  • Loading branch information
esthoril committed Feb 12, 2018
1 parent 312d5ba commit 3cc8ad7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CborBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void CborBuilder::addNumber(double value, const String asset)
addNumber(value);
}

void CborBuilder::addGps(double latitude, double longitude, double altitude, const String asset)
void CborBuilder::addGPS(double latitude, double longitude, double altitude, const String asset)
{
writeString(asset);
map(3);
Expand Down
2 changes: 1 addition & 1 deletion CborBuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class CborBuilder {
void addInteger(int value, const String asset);
void addNumber(double number, const String asset);
void addString(const String value, const String asset);
void addGps(double latitude, double longitude, double altitude, const String asset);
void addGPS(double latitude, double longitude, double altitude, const String asset);

void map(const unsigned int size);

Expand Down

0 comments on commit 3cc8ad7

Please sign in to comment.