diff --git a/admin.proto b/admin.proto index a70fe7e..1dea1a5 100644 --- a/admin.proto +++ b/admin.proto @@ -20,7 +20,7 @@ message AdminMessage { oneof variant { /* - * set the radio provisioning for this node + * Set the radio provisioning for this node */ RadioConfig set_radio = 1; diff --git a/mesh.proto b/mesh.proto index ce1b8d1..fe09450 100644 --- a/mesh.proto +++ b/mesh.proto @@ -372,8 +372,6 @@ message RouteDiscovery { repeated fixed32 route = 2; } - - /* * A Routing control Data packet handled by the routing plugin */ @@ -736,7 +734,7 @@ enum Constants { message NodeInfo { /* - * the node number + * The node number */ uint32 num = 1; @@ -783,8 +781,8 @@ message NodeInfo { */ /* - * Set to indicate the last time we received a packet from this node - */ + * Set to indicate the last time we received a packet from this node + */ fixed32 last_heard = 4; } @@ -1036,12 +1034,12 @@ message FromRadio { NodeInfo node_info = 4; /* - * set to send debug console output over our protobuf stream + * Set to send debug console output over our protobuf stream */ LogRecord log_record = 7; /* - * sent as true once the device has finished sending all of the responses to want_config + * Sent as true once the device has finished sending all of the responses to want_config * recipient should check if this ID matches our original request nonce, if * not, it means your config responses haven't started yet. * NOTE: This ID must not change - to keep (minimal) compatibility with <1.2 version of android apps. @@ -1060,7 +1058,7 @@ message FromRadio { /* - * packets/commands to the radio will be written (reliably) to the toRadio characteristic. + * Packets/commands to the radio will be written (reliably) to the toRadio characteristic. * Once the write completes the phone can assume it is handled. */ message ToRadio { @@ -1093,7 +1091,7 @@ message ToRadio { oneof payloadVariant { /* - * send this packet on the mesh + * Send this packet on the mesh */ MeshPacket packet = 2; @@ -1104,7 +1102,7 @@ message ToRadio { PeerInfo peer_info = 3; /* - * phone wants radio to send full node db to the phone, This is + * 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 diff --git a/mqtt.proto b/mqtt.proto index 1df02f6..ba114ab 100644 --- a/mqtt.proto +++ b/mqtt.proto @@ -29,4 +29,3 @@ message ServiceEnvelope { */ string gateway_id = 3; } - diff --git a/radioconfig.proto b/radioconfig.proto index baf5ced..566e32d 100644 --- a/radioconfig.proto +++ b/radioconfig.proto @@ -225,7 +225,7 @@ enum PositionFlags { message RadioConfig { /* - * see [software design](/software/other/sw-design.md) for more information on these preferences + * See [software design](/software/other/sw-design.md) for more information on these preferences */ message UserPreferences { @@ -481,7 +481,7 @@ message RadioConfig { bool ext_notification_plugin_alert_bell = 131; /* - *Preferences for the RangeTestPlugin + * Preferences for the RangeTestPlugin * FIXME - Move this out of UserPreferences and into a section for plugin configuration. */ bool range_test_plugin_enabled = 132; @@ -565,7 +565,7 @@ message RadioConfig { bool is_always_powered = 151; /* - * Automatically toggles to the next page on the screen like a carousel, based the specified interval in second + * Automatically toggles to the next page on the screen like a carousel, based the specified interval in seconds. * Potentially useful for devices without user buttons. */ uint32 auto_screen_carousel_secs = 152; diff --git a/storeforward.proto b/storeforward.proto index 1e9c304..9466dcf 100644 --- a/storeforward.proto +++ b/storeforward.proto @@ -135,5 +135,4 @@ message StoreAndForwardMessage { History history = 3; - }