fix linting

This commit is contained in:
Sacha Weatherstone 2022-05-02 10:19:54 +10:00
parent cb7bf9ac23
commit 79d24080ff
No known key found for this signature in database
GPG key ID: 7AB2D7E206124B31
2 changed files with 11 additions and 11 deletions

View file

@ -5,9 +5,9 @@ option optimize_for = LITE_RUNTIME;
option go_package = "github.com/meshtastic/gomeshproto";
import "channel.proto";
import "config.proto";
import "mesh.proto";
import "radioconfig.proto";
import "config.proto";
option java_outer_classname = "AdminProtos";

View file

@ -37,18 +37,18 @@ message Config {
* If set, this node will try to join the specified wifi network and
* acquire an address via DHCP
*/
string wifi_ssid = 1;
string wifi_ssid = 1;
/*
* If set, will be use to authenticate to the named wifi
*/
string wifi_password = 2;
/*
* If set, will be use to authenticate to the named wifi
*/
string wifi_password = 2;
/*
* If set, the node will operate as an AP (and DHCP server), otherwise it
* will be a station
*/
bool wifi_ap_mode = 3;
/*
* If set, the node will operate as an AP (and DHCP server), otherwise it
* will be a station
*/
bool wifi_ap_mode = 3;
}
/*