2026-07-24 12:05:48 +02:00

12 lines
328 B
C

// SPDX-License-Identifier: Apache-2.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 tactility/drivers/gps.h) - callers only ever see GpsState/GpsModel.
enum class GpsResponse {
None,
NotAck,
FrameErrors,
Ok,
};