- Fixes and improvements to `GpsSettings` app, `GpsDevice` and `GpsService` - Implemented location/GPS statusbar icon - Added app icon - Added support for other GPS models (based on Meshtastic code)
13 lines
173 B
C++
13 lines
173 B
C++
#pragma once
|
|
|
|
#include "Tactility/hal/gps/GpsDevice.h"
|
|
#include "Tactility/hal/uart/Uart.h"
|
|
|
|
namespace tt::hal::gps {
|
|
|
|
struct GpsInfo;
|
|
|
|
GpsModel probe(uart_port_t port);
|
|
|
|
}
|