blob: 6b4fa5224004531938d3fc8c5395ba86a8443013 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
syntax = "proto2";
package puzbus;
message I2CMsg {
// 32-bit is the smallest integer format supported by protobuf, even though
// we only need 7-10 bits for the I2C address.
required uint32 address = 1;
optional bytes data = 2;
}
|