Devices.proto 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. syntax = "proto3";
  2. package sys.dev;
  3. import "SPI.proto";
  4. import "I2CBus.proto";
  5. import "Expanders.proto";
  6. import "DAC.proto";
  7. import "Display.proto";
  8. import "Buttons.proto";
  9. import "Battery.proto";
  10. import "Ethernet.proto";
  11. import "nanopb.proto";
  12. import "customoptions.proto";
  13. option (nanopb_fileopt).enum_to_string = true;
  14. message spdif {
  15. option (nanopb_msgopt).packed_struct = true;
  16. option (nanopb_msgopt).msgid = 10015;
  17. int32 ws = 1 [(cust_field).v_int32=-1];
  18. int32 data = 2 [(cust_field).v_int32=-1];
  19. int32 clk = 3 [(cust_field).v_int32=-1];
  20. }
  21. enum strip_types {
  22. LS_UNKNOWN = 0;
  23. LS_WS2812 = 1;
  24. //unsupported
  25. LS_SK6812 = 2;
  26. //unsupported
  27. LS_APA106 = 3;
  28. }
  29. message led_strip {
  30. option (nanopb_msgopt).packed_struct = true;
  31. option (nanopb_msgopt).msgid = 10018;
  32. int32 gpio = 1 [(cust_field).v_int32=-1];
  33. int32 length = 2 [(nanopb).int_size = IS_16];
  34. strip_types strip_type = 3;
  35. }
  36. enum ir_types {
  37. IR_UNKNOWN = 0;
  38. IR_RC5 = 1;
  39. IR_NEC = 2;
  40. }
  41. message ir {
  42. option (nanopb_msgopt).packed_struct = true;
  43. ir_types type = 1;
  44. int32 gpio = 2 [(cust_field).v_int32=-1];
  45. }
  46. message config {
  47. option (nanopb_msgopt).packed_struct = true;
  48. option (nanopb_msgopt).msgid = 10019;
  49. spi.bus spi = 1;
  50. i2c.bus i2c = 2;
  51. dac.config dac = 3;
  52. spdif spdif = 4;
  53. sys.display.config display = 5;
  54. repeated sys.exp.config gpio_exp = 6 [(nanopb).type = FT_CALLBACK, (nanopb).callback_datatype = "sys_exp_config*"];
  55. led_strip led_strip = 7;
  56. btns.rotary rotary = 8;
  57. string root_button_profile = 9 [(nanopb).type = FT_POINTER];
  58. repeated btns.profile buttons_profiles = 10 [(nanopb).type = FT_POINTER];
  59. dev.eth.config eth = 11;
  60. battery.config battery = 12;
  61. ir ir = 13;
  62. }