DacControlSet.proto 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. syntax = "proto3";
  2. package sys.dac.control;
  3. import "nanopb.proto";
  4. option (nanopb_fileopt).enum_to_string = true;
  5. message set {
  6. option (nanopb_msgopt).packed_struct = true;
  7. option (nanopb_msgopt).msgid = 10009;
  8. repeated cmd commands = 1 [(nanopb).type = FT_POINTER]; //[(nanopb).max_count= 10];
  9. bool mclk_needed = 2;
  10. }
  11. enum type {
  12. INIT = 0;
  13. POWER_ON = 1;
  14. POWER_OFF = 2;
  15. SPEAKER_ON = 3;
  16. SPEAKER_OFF = 4;
  17. HEADSET_ON = 5;
  18. HEADSET_OFF = 6;
  19. }
  20. message cmd {
  21. option (nanopb_msgopt).packed_struct = true;
  22. option (nanopb_msgopt).msgid = 10010;
  23. type type = 1;
  24. repeated itm items = 2 [(nanopb).type = FT_POINTER]; //[(nanopb).max_count= 50];
  25. }
  26. message itm {
  27. option (nanopb_msgopt).packed_struct = true;
  28. option (nanopb_msgopt).msgid = 10011;
  29. oneof item_type {
  30. reg reg_action = 1;
  31. gpio gpio_action = 2;
  32. delay delay_action = 3;
  33. regs regs_action = 4;
  34. }
  35. }
  36. message reg {
  37. option (nanopb_msgopt).packed_struct = true;
  38. option (nanopb_msgopt).msgid = 10012;
  39. uint32 reg = 1[(nanopb).int_size = IS_8];
  40. uint32 val = 2 [(nanopb).int_size = IS_8];
  41. mode mode = 3;
  42. }
  43. message regs {
  44. option (nanopb_msgopt).packed_struct = true;
  45. option (nanopb_msgopt).msgid = 10060;
  46. uint32 reg = 1[(nanopb).int_size = IS_8];
  47. repeated uint32 vals = 2 [(nanopb).type = FT_POINTER,(nanopb).int_size = IS_8];
  48. }
  49. enum lvl {
  50. LV_UNDEFINED = 0;
  51. LV_0 = 1;
  52. LV_1 = 2;
  53. }
  54. message gpio {
  55. option (nanopb_msgopt).packed_struct = true;
  56. option (nanopb_msgopt).msgid = 10013;
  57. int32 gpio = 1 [(nanopb).int_size = IS_16];
  58. lvl level = 2;
  59. }
  60. message delay {
  61. option (nanopb_msgopt).packed_struct = true;
  62. option (nanopb_msgopt).msgid = 10014;
  63. int64 delay = 1; // Delay in milliseconds
  64. }
  65. enum mode {
  66. NOTHING = 0;
  67. OR = 1;
  68. AND = 2;
  69. }