diff --git a/protofiles/ConfTypeMsg.proto b/protofiles/ConfTypeMsg.proto index b893f41052c52..eb8675a009fc5 100644 --- a/protofiles/ConfTypeMsg.proto +++ b/protofiles/ConfTypeMsg.proto @@ -15,6 +15,7 @@ message ConfType { NTP = 7; SHUTDOWN = 8; Applications = 9; + CONFIG_DEFAULTS = 10; } enum Direction { RECEIVING = 0; diff --git a/protofiles/ConfigDefaults.proto b/protofiles/ConfigDefaults.proto index d2cc42e1d0c59..d80ebcf166bdb 100644 --- a/protofiles/ConfigDefaults.proto +++ b/protofiles/ConfigDefaults.proto @@ -8,10 +8,10 @@ message ConfigDefaults { message DefaultValues { optional ConfType.Type type = 1; optional string configName = 2; - optional string defaultU64 = 3; - optional string maxU64 = 4; - optional string minU64 = 5; - + optional string defaultval = 3; + optional string max = 4; + optional string min = 5; + optional string rangetype = 6; } repeated DefaultValues values = 1;