mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-20 08:55:06 +00:00
- Split up `gps-generic-module` into: - `gps-generic-module` that contains only interfaces/configs/bindings (Apache license) - `gps-meshtastic-module` that contains an implementation (GPL license) - Update `LICENSE.md` for changes, but also added clarifications - Added licenses to directories where they were missing - Changed license of some test projects from GPL to Apache.
23 lines
515 B
C++
23 lines
515 B
C++
// SPDX-License-Identifier: GPL-3.0
|
|
#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);
|
|
|
|
}
|