mirror of
https://github.com/google/pebble.git
synced 2025-03-19 18:41:21 +00:00
16 lines
272 B
Protocol Buffer
16 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;
|
|
}
|
|
}
|