mirror of
https://github.com/google/pebble.git
synced 2025-03-20 11:01:20 +00:00
17 lines
272 B
Protocol Buffer
17 lines
272 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "nanopb.proto";
|
||
|
|
||
|
message FirmwareUpdateCommand {
|
||
|
string version = 1;
|
||
|
uint32 size = 2;
|
||
|
}
|
||
|
|
||
|
message CommandWrapperMessage {
|
||
|
option (nanopb_msgopt).submsg_callback = true;
|
||
|
|
||
|
oneof payload {
|
||
|
FirmwareUpdateCommand firmware_update = 1;
|
||
|
}
|
||
|
}
|