Skip to content

Commit

Permalink
add readIMUHeading method in dummy_gps (#345)
Browse files Browse the repository at this point in the history
* add readIMUHeading method in dummy_gps

* fix readIMUHeading() return type
  • Loading branch information
jazonshou authored Nov 22, 2024
1 parent 8c5bcbe commit ad9e206
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/gps/dummy/dummy_gps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ using robot::types::DataPoint;
DataPoint<navtypes::gpscoords_t> readGPSCoords() {
return {};
}

DataPoint<double> readIMUHeading() {
return {};
}

0 comments on commit ad9e206

Please sign in to comment.