mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-18 16:05:05 +00:00
12 lines
237 B
C
12 lines
237 B
C
// SPDX-License-Identifier: Apache-2.0
|
|
#pragma once
|
|
|
|
#include <tactility/drivers/gps.h>
|
|
|
|
struct Device;
|
|
|
|
/**
|
|
* Sends the init sequence for a specific, already-probed GPS model over uart.
|
|
*/
|
|
bool gps_init(Device* uart, GpsModel model);
|