Sleep.proto 977 B

12345678910111213141516171819202122232425262728293031
  1. syntax = "proto3";
  2. package sys.sleep;
  3. import "GPIO.proto";
  4. import "nanopb.proto";
  5. import "customoptions.proto";
  6. option (nanopb_fileopt).enum_to_string = true;
  7. // Configuration for sleep service
  8. message config {
  9. option (nanopb_msgopt).packed_struct = true;
  10. option (nanopb_msgopt).msgid = 10035;
  11. // Inactivity in minutes before going to sleep
  12. uint32 delay = 1;
  13. // Inactivity delay in minutes after which sleep resumes
  14. int32 spurious = 2 [(nanopb).int_size = IS_16];
  15. // pinfor sleep
  16. gpio.config sleep = 3 [(cust_field).v_msg='{"pin":-1,"level":"LOW"}'];
  17. // List of GPIOs that will cause the system to wake up
  18. repeated gpio.config wake = 4 [(nanopb).type = FT_POINTER]; //[(nanopb).max_count= 10];
  19. // List of RTC GPIOs to keep active
  20. repeated gpio.config rtc = 5 [(nanopb).type = FT_POINTER]; //[(nanopb).max_count= 10];
  21. // Threshold in volts under which the system will enter into sleep
  22. float batt = 6;
  23. }