mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-20 00:45:05 +00:00
- Added generic GPS/GNSS support with device detection, configuration, and persistent settings. - Improved device and module lifecycle management. - Added flexible filesystem locking support for displays and storage. - Improved display-idle and keyboard backlight handling. - Updated architecture, driver, module, testing, and licensing documentation. - Removed old HAL device and related code.
23 lines
524 B
C++
23 lines
524 B
C++
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
#pragma once
|
|
|
|
#include <gps/gps.h>
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
struct Device;
|
|
|
|
namespace gps_ublox {
|
|
|
|
void checksum(uint8_t* message, size_t length);
|
|
|
|
// From https://github.com/meshtastic/firmware/blob/7648391f91f2b84e367ae2b38220b30936fb45b1/src/gps/GPS.cpp#L128
|
|
uint8_t make_packet(uint8_t class_id, uint8_t message_id, const uint8_t* payload, uint8_t payload_size, uint8_t* buffer_out);
|
|
|
|
GpsModel probe(Device* uart);
|
|
|
|
bool init(Device* uart, GpsModel model);
|
|
|
|
}
|