add a disconnect message

pull/19/head
Kevin Hester 2021-03-25 07:31:31 +08:00
rodzic 820fa497df
commit e8d2a96a00
2 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -659,6 +659,7 @@ Once the write completes the phone can assume it is handled.
| ----- | ---- | ----- | ----------- |
| packet | [MeshPacket](#MeshPacket) | | send this packet on the mesh |
| want_config_id | [uint32](#uint32) | | phone wants radio to send full node db to the phone, This is typically the first packet sent to the radio when the phone gets a bluetooth connection. The radio will respond by sending back a MyNodeInfo, a owner, a radio config and a series of FromRadio.node_infos, and config_complete the integer you write into this field will be reported back in the config_complete_id response this allows clients to never be confused by a stale old partially sent config. |
| disconnect | [bool](#bool) | | Tell API server we are disconnecting now. This is useful for serial links where there is no hardware/protocol based notification that the client has dropped the link. (Sending this message is optional for clients) |

Wyświetl plik

@ -873,5 +873,12 @@ message ToRadio {
* a stale old partially sent config.
*/
uint32 want_config_id = 100;
/*
* Tell API server we are disconnecting now. This is useful for serial links where there is no hardware/protocol based
* notification that the client has dropped the link.
* (Sending this message is optional for clients)
*/
bool disconnect = 104;
}
}