mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-20 00:45:05 +00:00
12 lines
229 B
C
12 lines
229 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
#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);
|