aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/nanopb/tests/multiple_files/multifile1.proto
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2016-09-28 14:55:49 -0700
committerGravatar GitHub <noreply@github.com>2016-09-28 14:55:49 -0700
commit4f13db3c6cfaae52b6d7e35edaa352bccff70b66 (patch)
tree5cbd30d3de3689a938aa7b61fd53cd72a195c91c /third_party/nanopb/tests/multiple_files/multifile1.proto
parentdff32e0b4457eece6edcae9d4d1b9df5a142205a (diff)
parent47c0053bfd71908ffc59ff6895565def22425e26 (diff)
Merge pull request #8184 from nicolasnoble/nanopb-code-drop
Nanopb code drop
Diffstat (limited to 'third_party/nanopb/tests/multiple_files/multifile1.proto')
-rw-r--r--third_party/nanopb/tests/multiple_files/multifile1.proto34
1 files changed, 34 insertions, 0 deletions
diff --git a/third_party/nanopb/tests/multiple_files/multifile1.proto b/third_party/nanopb/tests/multiple_files/multifile1.proto
new file mode 100644
index 0000000000..18f2c672ce
--- /dev/null
+++ b/third_party/nanopb/tests/multiple_files/multifile1.proto
@@ -0,0 +1,34 @@
+syntax = "proto2";
+
+message SubMessage {
+ optional string stringvalue = 1;
+ repeated int32 int32value = 2;
+ repeated fixed32 fixed32value = 3;
+ repeated fixed64 fixed64value = 4;
+}
+
+message TestMessage {
+ optional string stringvalue = 1;
+ repeated int32 int32value = 2;
+ repeated fixed32 fixed32value = 3;
+ repeated fixed64 fixed64value = 4;
+ optional SubMessage submsg = 5;
+ repeated string repeatedstring = 6;
+}
+
+message StaticMessage {
+ repeated fixed32 repint32 = 1;
+}
+
+enum SignedEnum {
+ SE_MIN = -128;
+ SE_MAX = 127;
+}
+
+enum UnsignedEnum {
+ UE_MIN = 0;
+ UE_MAX = 255;
+}
+
+
+