mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
Merge pull request #151 from meshtastic/LocalConfig
Config refactor for Module Config
This commit is contained in:
commit
98a888f863
1 changed files with 38 additions and 0 deletions
|
|
@ -7,6 +7,7 @@ option go_package = "github.com/meshtastic/gomeshproto";
|
|||
import "channel.proto";
|
||||
import "config.proto";
|
||||
import "mesh.proto";
|
||||
import "module_config.proto";
|
||||
|
||||
option java_outer_classname = "DeviceOnly";
|
||||
|
||||
|
|
@ -166,4 +167,41 @@ message LocalConfig {
|
|||
* TODO: REPLACE
|
||||
*/
|
||||
Config.LoRaConfig lora = 6;
|
||||
}
|
||||
|
||||
message LocalModuleConfig {
|
||||
/*
|
||||
* TODO: REPLACE
|
||||
*/
|
||||
ModuleConfig.MQTTConfig mqtt = 1;
|
||||
|
||||
/*
|
||||
* TODO: REPLACE
|
||||
*/
|
||||
ModuleConfig.SerialConfig serial = 2;
|
||||
|
||||
/*
|
||||
* TODO: REPLACE
|
||||
*/
|
||||
ModuleConfig.ExternalNotificationConfig external_notification = 3;
|
||||
|
||||
/*
|
||||
* TODO: REPLACE
|
||||
*/
|
||||
ModuleConfig.StoreForwardConfig store_forward = 4;
|
||||
|
||||
/*
|
||||
* TODO: REPLACE
|
||||
*/
|
||||
ModuleConfig.RangeTestConfig range_test = 5;
|
||||
|
||||
/*
|
||||
* TODO: REPLACE
|
||||
*/
|
||||
ModuleConfig.TelemetryConfig telemetry = 6;
|
||||
|
||||
/*
|
||||
* TODO: REPLACE
|
||||
*/
|
||||
ModuleConfig.CannedMessageConfig canned_message = 7;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue