I2CBus.proto 665 B

1234567891011121314151617181920212223242526
  1. syntax = "proto3";
  2. package sys.i2c;
  3. import "nanopb.proto";
  4. import "customoptions.proto";
  5. option (nanopb_fileopt).enum_to_string = true;
  6. enum port {
  7. UNSPECIFIED = 0;
  8. PORT0 = 1;
  9. PORT1 = 2;
  10. }
  11. message bus {
  12. option (nanopb_msgopt).packed_struct = true;
  13. option (nanopb_msgopt).msgid = 10034;
  14. port port = 1 ;
  15. int64 speed = 2 [(cust_field).v_int64 = 400000];
  16. int32 sda = 3 [(nanopb).int_size=IS_16, (cust_field).v_int32=-1];
  17. int32 scl = 4 [(nanopb).int_size=IS_16, (cust_field).v_int32=-1];
  18. }
  19. message device {
  20. option (nanopb_msgopt).packed_struct = true;
  21. option (nanopb_msgopt).msgid = 10021;
  22. int32 address = 1 [(nanopb).int_size = IS_8];
  23. }