| 14 | extern const ServiceManifest manifest; |
| 15 | |
| 16 | constexpr bool hasTimeElapsed(TickType_t now, TickType_t timeInThePast, TickType_t expireTimeInTicks) { |
| 17 | return (now - timeInThePast) >= expireTimeInTicks; |
| 18 | } |
| 19 | |
| 20 | GpsService::GpsDeviceRecord* GpsService::findGpsRecord(const std::shared_ptr<GpsDevice>& device) { |
| 21 | auto lock = mutex.asScopedLock(); |
no outgoing calls
no test coverage detected