gps now over spi

This commit is contained in:
2022-12-09 14:10:57 +01:00
parent 599f176622
commit f14992c040
26 changed files with 974 additions and 225 deletions
+4
View File
@@ -54,6 +54,10 @@ class Point{
* @return false
*/
bool isValid() const { return this->lat + this->lon; }
// FIXME: Add real implementations!
double distanceTo(const Point& point) const { return 0; }
double courseTo(const Point& point) const { return 0; }
};
/**