mirror of
https://github.com/google/pebble.git
synced 2025-05-22 03:14:52 +00:00
Import of the watch repository from Pebble
This commit is contained in:
commit
3b92768480
10334 changed files with 2564465 additions and 0 deletions
45
third_party/nanopb/tests/stackusage/stackusage.proto
vendored
Normal file
45
third_party/nanopb/tests/stackusage/stackusage.proto
vendored
Normal file
|
@ -0,0 +1,45 @@
|
|||
syntax = "proto3";
|
||||
|
||||
message Property
|
||||
{
|
||||
enum Mode
|
||||
{
|
||||
INVALID = 0;
|
||||
A = 1;
|
||||
B = 2;
|
||||
C = 3;
|
||||
}
|
||||
|
||||
oneof field
|
||||
{
|
||||
Mode DeviceA_Mode = 1;
|
||||
uint32 DeviceA_Size = 2;
|
||||
uint32 DeviceA_Length = 3;
|
||||
|
||||
Mode DeviceB_Mode = 4;
|
||||
uint32 DeviceB_Size = 5;
|
||||
uint32 DeviceB_Length = 6;
|
||||
}
|
||||
}
|
||||
|
||||
message SettingsGroup
|
||||
{
|
||||
message Settings
|
||||
{
|
||||
message Command
|
||||
{
|
||||
uint32 label = 1;
|
||||
repeated Property properties = 2;
|
||||
}
|
||||
|
||||
uint32 id = 1;
|
||||
string name = 2;
|
||||
uint32 flags = 3;
|
||||
bool en = 5;
|
||||
Command begin = 6;
|
||||
Command end = 7;
|
||||
}
|
||||
|
||||
Settings settings = 1;
|
||||
uint32 version = 2;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue