configuration.proto 1001 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. syntax = "proto3";
  2. package sys;
  3. import "Services.proto";
  4. import "Gpios.proto";
  5. import "Devices.proto";
  6. import "Names.proto";
  7. import "Network.proto";
  8. import "customoptions.proto";
  9. import "nanopb.proto";
  10. // Main configuration structure
  11. message config {
  12. option (nanopb_msgopt).packed_struct = true;
  13. // Provides the global name for the pointer to
  14. // protoc plugins
  15. option (cust_msg).global_name = "platform->";
  16. option (nanopb_msgopt).msgid = 1000;
  17. // GPIO structure definition with leds, etc
  18. sys.gpios.config gpios = 1;
  19. // Device tree with SPI, I2C, SPDIF, Display, etc
  20. dev.config dev = 2;
  21. // Platform services definition with options
  22. services.config services = 3 ;
  23. // Main device name used for networking, etc. Services which
  24. // need a name typically has the option to overwrite its own name
  25. sys.names.config names = 4;
  26. // Hardware target (e.g. SqueezeAMP, MUSE, etc.)
  27. string target = 5 [(nanopb).type = FT_POINTER];
  28. sys.net.config net = 6;
  29. }