Update doc revision and pdf cover.
[apps/low-level-can-service.git] / CAN-binder / libs / nanopb / tests / inline / inline.proto
1 /* Test nanopb option parsing.
2  * options.expected lists the patterns that are searched for in the output.
3  */
4
5 syntax = "proto2";
6
7 import "nanopb.proto";
8
9 message Message1
10 {
11     required bytes data = 1 [(nanopb).type = FT_INLINE, (nanopb).max_size = 32];
12 }
13
14 message Message2
15 {
16     optional bytes data = 1 [(nanopb).type = FT_INLINE, (nanopb).max_size = 64];
17 }