firmware/extra/nanopb/tests/callbacks/callbacks.proto
Patrick Moessler 0c83634f42 Initial commit
2019-10-13 00:37:11 +02:00

18 lines
445 B
Protocol Buffer

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;
}