Repo of no-std crates for my personal embedded projects
1syntax = "proto2";
2
3import "google/protobuf/descriptor.proto";
4
5enum APISourceType {
6 SOURCE_BOTH = 0;
7 SOURCE_SERVER = 1;
8 SOURCE_CLIENT = 2;
9}
10
11message void {}
12
13extend google.protobuf.MethodOptions {
14 optional bool needs_setup_connection = 1038 [default=true];
15 optional bool needs_authentication = 1039 [default=true];
16}
17
18extend google.protobuf.MessageOptions {
19 optional uint32 id = 1036 [default=0];
20 optional APISourceType source = 1037 [default=SOURCE_BOTH];
21 optional string ifdef = 1038;
22 optional bool log = 1039 [default=true];
23 optional bool no_delay = 1040 [default=false];
24 optional string base_class = 1041;
25}