mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-20 08:55:06 +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.
12 lines
311 B
C
12 lines
311 B
C
// SPDX-License-Identifier: GPL-3.0
|
|
#pragma once
|
|
|
|
// Internal-only result of waiting for a chip's ACK/NACK response during probing/initialization.
|
|
// Not part of the public API (see gps/gps.h) - callers only ever see GpsState/GpsModel.
|
|
enum class GpsResponse {
|
|
None,
|
|
NotAck,
|
|
FrameErrors,
|
|
Ok,
|
|
};
|