mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-18 16:05:05 +00:00
13 lines
280 B
C
13 lines
280 B
C
// SPDX-License-Identifier: Apache-2.0
|
|
#pragma once
|
|
|
|
#include <tactility/drivers/gps.h>
|
|
|
|
struct Device;
|
|
|
|
/**
|
|
* Attempts to auto-detect the GPS/GNSS chipset connected via uart.
|
|
* @return GPS_MODEL_UNKNOWN when no supported chipset responded
|
|
*/
|
|
GpsModel gps_probe(Device* uart);
|