blob: 23581357f0dcfba6b8a7b2a3c853cd77bc693ec5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
syntax = "proto3";
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.
uint32 address = 1;
optional bytes data = 2;
}
|