pull/16/head
Kevin Hester 2021-02-26 15:33:20 +08:00
rodzic 75ae9929a2
commit 6bb139c0a4
2 zmienionych plików z 8 dodań i 4 usunięć

Wyświetl plik

@ -35,11 +35,13 @@ message AdminMessage {
/*
* Send the current RadioConfig in the response for this message
*/
bool get_radio = 4;
bool get_radio_request = 4;
RadioConfig get_radio_response = 5;
/*
* Send the specified channel in the response for this message
*/
uint32 get_channel = 5;
uint32 get_channel_request = 6;
Channel get_channel_response = 7;
}
}

Wyświetl plik

@ -80,8 +80,10 @@ FIXME - move the radioconfig/user/channel READ operations into AdminMessage as w
| set_radio | [RadioConfig](#RadioConfig) | | set the radio provisioning for this node |
| set_owner | [User](#User) | | Set the owner for this node |
| set_channel | [Channel](#Channel) | | Set channels (using the new API). A special channel is the "primary channel". The other records are secondary channels. Note: only one channel can be marked as primary. If the client sets a particular channel to be primary, the previous channel will be set to SECONDARY automatically |
| get_radio | [bool](#bool) | | Send the current RadioConfig in the response for this message |
| get_channel | [uint32](#uint32) | | Send the specified channel in the response for this message |
| get_radio_request | [bool](#bool) | | Send the current RadioConfig in the response for this message |
| get_radio_response | [RadioConfig](#RadioConfig) | | |
| get_channel_request | [uint32](#uint32) | | Send the specified channel in the response for this message |
| get_channel_response | [Channel](#Channel) | | |