Skip to content

Commit

Permalink
snmp update
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-du-car committed Nov 9, 2023
1 parent cf8f392 commit a04a0ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ namespace RSUHealthMonitor
return isAllPresent;
}

std::map<long, long> RSUHealthMonitorPlugin::ParseGPS(const std::string &gps_nmea_data)
std::map<double, double> RSUHealthMonitorPlugin::ParseGPS(const std::string &gps_nmea_data)
{
std::map<long, long> result;
std::map<double, double> result;
nmea::NMEAParser parser;
nmea::GPSService gps(parser);
try
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ namespace RSUHealthMonitor
/**
* @brief Parse NMEA GPS sentense and return GPS related data
* @param gps_nmea_data NMEA GPS sentense
* @return map<long, long> A map of latitude and longitude
* @return map<double, double> A map of latitude and longitude
*/
std::map<long, long> ParseGPS(const std::string &gps_nmea_data);
std::map<double, double> ParseGPS(const std::string &gps_nmea_data);
/**
* @brief determine if all required fields in the RSU config map _rsuOIDConfigMap present in the input fields
*/
Expand Down

0 comments on commit a04a0ee

Please sign in to comment.