mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-17 23:55:04 +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.
18 lines
547 B
YAML
18 lines
547 B
YAML
description: >
|
|
Generic GPS/GNSS receiver interface. Supports MTK, Airoha/AG33xx, ATGM336H/CASIC,
|
|
Unicore UC6580 and u-blox 6/7/8/9/10 chipsets, either auto-probed or fixed via 'model'.
|
|
|
|
compatible: "tactility,gps-generic"
|
|
|
|
properties:
|
|
baud-rate:
|
|
type: int
|
|
required: true
|
|
description: UART baud rate, e.g. 9600 or 38400
|
|
model:
|
|
type: int
|
|
default: 0
|
|
description: |
|
|
GpsModel enum value (see gps/gps.h, e.g. GPS_MODEL_UBLOX10 = 12). Defaults to
|
|
GPS_MODEL_UNKNOWN (0), which triggers an autoprobe on start().
|