Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/flipperdevices/flipperzero-protobuf.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorあく <alleteam@gmail.com>2022-08-08 16:28:10 +0300
committerGitHub <noreply@github.com>2022-08-08 16:28:10 +0300
commitc63c1466b6f2e4a561c8e82d347fcdba511d1f2d (patch)
tree9361ef85d7223dab79bb09298444e73699576ffe
parentcc5918dc488ac3617012ce5377114e086b447324 (diff)
Add region provisioning (#35)
-rw-r--r--Changelog5
-rw-r--r--flipper.proto11
2 files changed, 16 insertions, 0 deletions
diff --git a/Changelog b/Changelog
index 20a4966..8e644d5 100644
--- a/Changelog
+++ b/Changelog
@@ -1,5 +1,10 @@
# Changelog
+
+## [0.12]
+### Added
+- Region message
+
## [0.11]
### Added
- App messages: AppStateResponse
diff --git a/flipper.proto b/flipper.proto
index ca16eb5..911c09a 100644
--- a/flipper.proto
+++ b/flipper.proto
@@ -119,3 +119,14 @@ message Main {
}
}
+message Region {
+ message Band {
+ uint32 start = 1;
+ uint32 end = 2;
+ int32 power_limit = 3;
+ uint32 duty_cycle = 4;
+ }
+
+ bytes country_code = 1;
+ repeated Band bands = 2;
+}