mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
add confirm messages
This commit is contained in:
parent
6dac3099be
commit
361312ac5c
2 changed files with 14 additions and 2 deletions
14
admin.proto
14
admin.proto
|
|
@ -43,7 +43,17 @@ message AdminMessage {
|
|||
* Send the specified channel in the response for this message
|
||||
* NOTE: This field is sent with the channel index + 1 (to ensure we never try to send 'zero' - which protobufs treats as not present)
|
||||
*/
|
||||
uint32 get_channel_request = 6;
|
||||
Channel get_channel_response = 7;
|
||||
uint32 get_channel_request = 6;
|
||||
Channel get_channel_response = 7;
|
||||
|
||||
/* Setting channels/radio config remotely carries the risk that you might
|
||||
* send an invalid config and the radio never talks to your mesh again.
|
||||
* Therefore if setting either of these properties remotely, you must send
|
||||
* a confirm_xxx message within 10 minutes. If you fail to do so, the radio
|
||||
* will assume loss of comms and revert your changes.
|
||||
* These messages are optional when changing the local node.
|
||||
*/
|
||||
bool confirm_set_channel = 32;
|
||||
bool confirm_set_radio = 33;
|
||||
}
|
||||
}
|
||||
|
|
@ -106,6 +106,8 @@ message User {
|
|||
* A globally unique ID string for this user. In the case of
|
||||
* Signal that would mean +16504442323, for the default macaddr
|
||||
* derived id it would be !<8 hexidecimal bytes>
|
||||
* Note: app developers are encouraged to also use the following standard
|
||||
* node IDs "^all" (for broadcast), "^local" (for the locally connected node)
|
||||
*/
|
||||
string id = 1;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue