SPI.proto 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. syntax = "proto3";
  2. package sys.spi;
  3. import "Common.proto";
  4. import "nanopb.proto";
  5. import "customoptions.proto";
  6. // +-----+----------------+--------------+------------------------+--------------------+
  7. // |SPI | Clock polarity | Clock phase | Data is shifted out on | Data is sampled on |
  8. // |mode | (CPOL) | (CPHA) | | |
  9. // +-----+----------------+--------------+------------------------+--------------------+
  10. // | 0 | 0 | 0 | falling SCLK, and when | rising SCLK |
  11. // | | | | CS activates | |
  12. // +-----+----------------+--------------+------------------------+--------------------+
  13. // | 1 | 0 | 1 | rising SCLK | falling SCLK |
  14. // +-----+----------------+--------------+------------------------+--------------------+
  15. // | 2 | 1 | 0 | rising SCLK, and when | falling SCLK |
  16. // | | | | CS activates | |
  17. // +-----+----------------+--------------+------------------------+--------------------+
  18. // | 3 | 1 | 1 | falling SCLK | rising SCLK |
  19. // +-----+----------------+--------------+------------------------+--------------------+
  20. enum mode {
  21. M_0 = 0;
  22. M_1 = 1;
  23. M_2 = 2;
  24. M_3 = 3;
  25. }
  26. message bus {
  27. option (nanopb_msgopt).packed_struct = true;
  28. option (nanopb_msgopt).msgid = 10016;
  29. int32 mosi = 1 [(cust_field).v_int32=-1];
  30. int32 miso = 2 [(cust_field).v_int32=-1];
  31. int32 clk = 3 [(cust_field).v_int32=-1];
  32. int32 dc = 4 [(cust_field).v_int32=-1];
  33. dev.common.hosts host = 5; // Defaults to Host1 in your application logic
  34. }
  35. message device {
  36. option (nanopb_msgopt).packed_struct = true;
  37. option (nanopb_msgopt).msgid = 10022;
  38. int32 cs = 1 [(nanopb).int_size=IS_16, (cust_field).v_int32=-1];
  39. int32 speed = 4;
  40. mode mode = 5;
  41. }