- ESP_OK on success - ESP_ERR_INVALID_ARG if the handle argument is NULL - ESP_ERR_INVALID_STATE if the lock is still acquired - ESP_ERR_NOT_SUPPORTED if CONFIG_PM_ENABLE is not enabled in sdkconfig
Related Functions
Found 4 other functions taking a esp_pm_lock
argument:
Take a power management lock Once the lock is taken, power management algorithm will not switch to the mode specified in a call to esp_pm_lock_create, or any of the lower power modes (higher numeric values of 'mode'). The lock is recursive, in the sense that if esp_pm_lock_acquire is called a number of times, esp_pm_lock_release has to be called the same number of times in order to release the lock. This function may be called from an ISR. This function is not thread-safe w.r.t. calls to other esp_pm_lock_* functions for the same handle.
Release the lock taken using esp_pm_lock_acquire. Call to this functions removes power management restrictions placed when taking the lock. Locks are recursive, so if esp_pm_lock_acquire is called a number of times, esp_pm_lock_release has to be called the same number of times in order to actually release the lock. This function may be called from an ISR. This function is not thread-safe w.r.t. calls to other esp_pm_lock_* functions for the same handle.
Initialize a lock handle for certain power management parameter When lock is created, initially it is not taken. Call esp_pm_lock_acquire to take the lock. This function must not be called from an ISR.