GPS implementation (#216)

Implemented basic GPS support:
- GPS HAL
- GPS Service
- GPS Settings app
This commit is contained in:
Ken Van Hoeylandt
2025-02-11 23:46:52 +01:00
committed by GitHub
parent 2345ba6d13
commit 14e459e50f
36 changed files with 2596 additions and 30 deletions
@@ -0,0 +1,15 @@
#include "Tactility/hal/gps/GpsDevice.h"
#include "Tactility/service/Service.h"
namespace tt::hal::gps {
bool init(const std::vector<GpsDevice::Configuration>& configurations) {
for (auto& configuration : configurations) {
auto device = std::make_shared<GpsDevice>(configuration);
hal::registerDevice(std::move(device));
}
return true;
}
} // namespace tt::hal::gps