1# Copyright (c) 2023 Trackunit Corporation
2# SPDX-License-Identifier: Apache-2.0
3
4properties:
5  pps-mode:
6    type: string
7    required: true
8    description: |
9      PPS output mode:
10      - GNSS_PPS_MODE_DISABLED: Output disabled
11      - GNSS_PPS_MODE_ENABLED: Output always enabled
12      - GNSS_PPS_MODE_ENABLED_AFTER_LOCK: Output enabled from first lock
13      - GNSS_PPS_MODE_ENABLED_WHILE_LOCKED: Output enabled only while locked
14    enum:
15      - GNSS_PPS_MODE_DISABLED
16      - GNSS_PPS_MODE_ENABLED
17      - GNSS_PPS_MODE_ENABLED_AFTER_LOCK
18      - GNSS_PPS_MODE_ENABLED_WHILE_LOCKED
19
20  pps-pulse-width:
21    type: int
22    description: 1PPS pulse width
23    default: 100
24