mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-17 23:55:04 +00:00
- Split up `gps-generic-module` into: - `gps-generic-module` that contains only interfaces/configs/bindings (Apache license) - `gps-meshtastic-module` that contains an implementation (GPL license) - Update `LICENSE.md` for changes, but also added clarifications - Added licenses to directories where they were missing - Changed license of some test projects from GPL to Apache.
13 lines
263 B
C
13 lines
263 B
C
// SPDX-License-Identifier: GPL-3.0
|
|
#pragma once
|
|
|
|
#include <gps/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);
|