add nanopb (manual)

This commit is contained in:
Philippe G
2022-01-04 11:01:14 -08:00
parent 06b637c55b
commit 39f5a81238
554 changed files with 36793 additions and 3831 deletions

View File

@@ -0,0 +1,17 @@
/* Test nanopb option parsing.
* options.expected lists the patterns that are searched for in the output.
*/
syntax = "proto2";
import "nanopb.proto";
message Message1
{
required bytes data = 1 [(nanopb).type = FT_INLINE, (nanopb).max_size = 32];
}
message Message2
{
optional bytes data = 1 [(nanopb).type = FT_INLINE, (nanopb).max_size = 64];
}