New roles and clarification

pull/290/head
Ben Meadors 2023-01-27 12:41:08 -06:00
rodzic 732128bd8e
commit e69381aad6
1 zmienionych plików z 15 dodań i 2 usunięć

Wyświetl plik

@ -34,6 +34,7 @@ message Config {
* Router device role.
* Mesh packets will prefer to be routed over this node. This node will not be used by client apps.
* The wifi/ble radios and the oled screen will be put to sleep.
* This mode may still potentially have higher power usage due to it's preference in message rebroadcasting on the mesh.
*/
ROUTER = 2;
@ -41,8 +42,20 @@ message Config {
* Router Client device role
* Mesh packets will prefer to be routed over this node. The Router Client can be used as both a Router and an app connected Client.
*/
ROUTER_CLIENT = 3;
ROUTER_CLIENT = 3;
/*
* Repeater device role
* Mesh packets will simply be rebroadcasted over this node. Nodes under this role node will not originate NodeInfo, Position, Telemetry
* or any other packet type. They will simply rebroadcast any mesh packets on the same frequency, channel num, spread factory, and coding rate.
*/
REPEATER = 4;
/*
* Tracker device role
* Position Mesh packets for will be higher priority and sent more frequently by default.
*/
TRACKER = 5;
}
/*