-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See CHANGELOG.md for changes.
- Loading branch information
Showing
21 changed files
with
717 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
#pragma once | ||
|
||
namespace location_information { | ||
struct LocationInformation; | ||
struct HaGnssMetrics; | ||
struct ECIDInformation; | ||
} // namespace location_information | ||
|
||
struct LocationInformationOptions; | ||
|
||
bool provide_location_information_callback(LocationInformation& location, HaGnssMetrics& metrics, | ||
void* userdata); | ||
bool provide_location_information_callback_ublox(LocationInformation& location, | ||
HaGnssMetrics& metrics, void* userdata); | ||
bool provide_location_information_callback_nmea(LocationInformation& location, | ||
HaGnssMetrics& metrics, void* userdata); | ||
bool provide_location_information_callback_fake(LocationInformation& location, | ||
HaGnssMetrics& metrics, void* userdata); | ||
bool provide_ecid_callback(ECIDInformation& ecid, void* userdata); | ||
bool provide_location_information_callback(location_information::LocationInformation& location, | ||
location_information::HaGnssMetrics& metrics, | ||
void* userdata); | ||
bool provide_location_information_callback_ublox( | ||
location_information::LocationInformation& location, | ||
location_information::HaGnssMetrics& metrics, void* userdata); | ||
bool provide_location_information_callback_nmea(location_information::LocationInformation& location, | ||
location_information::HaGnssMetrics& metrics, | ||
void* userdata); | ||
bool provide_location_information_callback_fake(location_information::LocationInformation& location, | ||
location_information::HaGnssMetrics& metrics, | ||
void* userdata); | ||
bool provide_ecid_callback(location_information::ECIDInformation& ecid, void* userdata); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.