diff options
Diffstat (limited to 'proto/puzbusv1.proto')
-rw-r--r-- | proto/puzbusv1.proto | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/puzbusv1.proto b/proto/puzbusv1.proto index 6b4fa52..2358135 100644 --- a/proto/puzbusv1.proto +++ b/proto/puzbusv1.proto @@ -1,11 +1,11 @@ -syntax = "proto2"; +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. - required uint32 address = 1; + uint32 address = 1; optional bytes data = 2; } |