Skip to content

Commit 16320c4

Browse files
committed
Adjust header values after discussion 345
1 parent 6c263a4 commit 16320c4

File tree

5 files changed

+34
-43
lines changed

5 files changed

+34
-43
lines changed

.vitepress/config.mts

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ export default defineConfig({
219219
},
220220
{
221221
text: 'Messages',
222-
link: '/devices/api/messages',
222+
// link: '/devices/api/messages',
223223
items: [
224224
{
225225
text: 'Generic',

.vscode/settings.json

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"IMEI",
88
"livelink",
99
"ondevice",
10+
"RSSI",
1011
"uintn",
1112
"xmodem"
1213
]

devices/api/headers.md

+11-24
Original file line numberDiff line numberDiff line change
@@ -24,37 +24,24 @@ Can be used with ACK messages to identify the message that is being ACKed.
2424

2525
Used to identify the client that sent the message where appropriate.
2626

27-
## Chunking
27+
## 3: Response Message ID
2828

29-
TODO document...
30-
31-
### 3: Chunk Count
32-
### 4: Chunk Index
33-
34-
## Forwarding
29+
This message is responding to a previous message with the specified message ID.
3530

36-
TODO document...
31+
## 4: Message Status
3732

38-
### 10: Forward For
39-
### 11: RSSI
40-
### 12: SNR
41-
### 13: Forwarded Type
33+
The status of the response.
4234

43-
## Services
35+
- 1: OK
36+
- 2: NOT OK
4437

45-
### 20: Method
38+
## 5: Method
4639

4740
- 1: Set, Request a change, using the data provided.
4841
- 2: Get, Request the current value.
4942
- 3: Subscribe, Request to be notified of changes.
5043

51-
### 22: Response Message ID
52-
53-
This message is responding to a previous message with the specified message ID.
54-
55-
### 23: Response Status
56-
57-
The status of the response.
58-
59-
- 1: OK
60-
- 2: NOT OK
44+
## 10: Forwarded For
45+
## 11: Forwarded RSSI
46+
## 12: Forwarded SNR
47+
## 13: Forwarded Type

devices/api/messages/generic.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ outline: [1,3]
44

55
# Generic
66

7-
Message types that can be used in a variety of situations
7+
Message types that can be used in a variety of situations.
88

99
## 5: ACK
1010

1111
Used to acknowledge a previously sent message.
1212

13+
Used in most communication that doesn't already
14+
1315
**Data fields**
1416

1517
| Field | Name | Description | Type |

public/files/protocol-v3.yaml

+18-17
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,8 @@ header:
3737
2:
3838
name: "NOT_OK"
3939
description: "Something went wrong while processing the message"
40-
10:
41-
name: "Forwarded For"
42-
description: "ID of the client sending the original message that is being forwarded"
43-
11:
44-
name: "Forwarded RSSI"
45-
description: "RSSI of the original message being forwarded"
46-
12:
47-
name: "Forwarded SNR"
48-
description: "SNR of the original message being forwarded"
49-
13:
50-
name: "Forwarded Type"
51-
description: "Type of the original message being forwarded"
52-
type: "uintn"
53-
values:
54-
1: "LORA Base Station"
55-
20:
56-
name: "Method"
40+
5:
41+
name: "Message Method"
5742
description: "Request a service to be perform an action"
5843
type : "uintn"
5944
values:
@@ -66,6 +51,22 @@ header:
6651
3:
6752
name: "SUBSCRIBE"
6853
description: "Subscribe to a value or values. If no keys are provided, all available values will be subscribed to. If a value changes, the service will send a message with the new value"
54+
55+
10:
56+
name: "Forwarded For"
57+
description: "ID of the client sending the original message that is being forwarded"
58+
11:
59+
name: "Forwarded RSSI"
60+
description: "RSSI of forwarded message"
61+
12:
62+
name: "Forwarded SNR"
63+
description: "SNR of forwarded message"
64+
13:
65+
name: "Forwarded Type"
66+
description: "Type of forwarded message"
67+
type: "uintn"
68+
values:
69+
1: "LORA Base Station"
6970
messages:
7071
5:
7172
name: "General ACK"

0 commit comments

Comments
 (0)