pm.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // Copyright 2020 Espressif Systems (Shanghai) PTE LTD
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #pragma once
  15. #include <stdint.h>
  16. #include <stdbool.h>
  17. #include "esp_err.h"
  18. #include "soc/rtc.h"
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. /**
  23. * @brief Power management config for ESP32C3
  24. *
  25. * Pass a pointer to this structure as an argument to esp_pm_configure function.
  26. */
  27. typedef struct {
  28. int max_freq_mhz; /*!< Maximum CPU frequency, in MHz */
  29. int min_freq_mhz; /*!< Minimum CPU frequency to use when no locks are taken, in MHz */
  30. bool light_sleep_enable; /*!< Enter light sleep when no locks are taken */
  31. } esp_pm_config_esp32c3_t;
  32. #ifdef __cplusplus
  33. }
  34. #endif