Ken Van Hoeylandt 1cb661469d
GPS refactor & license text updates (#601)
- 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.
2026-07-30 16:28:41 +02:00

12 lines
220 B
C

// SPDX-License-Identifier: GPL-3.0
#pragma once
#include <gps/gps.h>
struct Device;
/**
* Sends the init sequence for a specific, already-probed GPS model over uart.
*/
bool gps_init(Device* uart, GpsModel model);