mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2026-01-06 08:39:03 +03:00
add nanopb (manual)
This commit is contained in:
@@ -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];
|
||||
}
|
||||
Reference in New Issue
Block a user