mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-18 16:05:05 +00:00
12 lines
328 B
C
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,
|
|
};
|