Skip to content

Commit 183035e

Browse files
committed
dmsg: ublox PL command
1 parent 9d45478 commit 183035e

File tree

2 files changed

+76
-0
lines changed

2 files changed

+76
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
aside: false
3+
outline: false
4+
---
5+
6+
<script setup>
7+
import ProtocolBytes from '../../../components/ProtocolBytes.vue';
8+
import SplitColumnView from '../../../components/SplitColumnView.vue';
9+
import GenerateConsts from '../../../components/GenerateConsts.vue'
10+
import PayloadTable from '../../../components/PayloadTable.vue'
11+
</script>
12+
13+
::: danger ⚠️ Not yet public
14+
The Device API currently in development and is not yet accessible on production devices.
15+
16+
These pages can be seen as a view of what is to come later this year.
17+
:::
18+
19+
# 53: Ublox protection level
20+
21+
<SplitColumnView>
22+
<template #left>
23+
24+
Used to retrieve [ublox protection level](https://www.u-blox.com/en/technologies/protection-level) information, on devices that have
25+
26+
</template>
27+
<template #right>
28+
29+
<PayloadTable :messageId="53" headerText="Payload" headerMarginTop="0px" />
30+
31+
</template>
32+
</SplitColumnView>
33+
34+
## Examples
35+
36+
TODO
37+
38+
## Code
39+
40+
For convenience, the following constants can be used to reference the payload fields.
41+
42+
<GenerateConsts :messageId="53"/>

public/files/protocol-v3.yaml

+34
Original file line numberDiff line numberDiff line change
@@ -672,6 +672,40 @@ messages:
672672
name: "Enable"
673673
2:
674674
name: "Disable"
675+
53:
676+
name: "Ublox Protection Level"
677+
description: "Get information about the ublox protection level"
678+
group: "ungrouped"
679+
# Only supports GET
680+
data:
681+
1:
682+
name: "PL Valid"
683+
description: "Indicates if the protection level is valid"
684+
type: "uint8"
685+
2:
686+
name: "PL X"
687+
description: "Protection level in the X direction in mm"
688+
type: "uint32"
689+
3:
690+
name: "PL Y"
691+
description: "Protection level in the Y direction in mm"
692+
type: "uint32"
693+
4:
694+
name: "PL Z"
695+
description: "Protection level in the Z direction in mm"
696+
type: "uint32"
697+
5:
698+
name: "Horizontal Orientation"
699+
description: "Horizontal orientation of the protection level"
700+
type: "uint16"
701+
6:
702+
name: "TMIR Coefficient"
703+
description: "TMIR coefficient for protection level calculation"
704+
type: "uint8"
705+
7:
706+
name: "TMIR Exponent"
707+
description: "TMIR exponent for protection level calculation"
708+
type: "int8"
675709
1004:
676710
name: "LORA"
677711
group: "ungrouped"

0 commit comments

Comments
 (0)