mirror of
https://github.com/google/pebble.git
synced 2025-03-19 18:41:21 +00:00
9 lines
178 B
Protocol Buffer
9 lines
178 B
Protocol Buffer
syntax = "proto2";
|
|
import "nanopb.proto";
|
|
|
|
message MyMessage {
|
|
option (nanopb_msgopt).msgid = 8;
|
|
oneof configuration_flash {
|
|
MyMessage my_message_v1 = 1;
|
|
}
|
|
}
|