mirror of
https://github.com/espressif/esp-idf
synced 2025-03-12 02:29:10 -04:00
13 lines
213 B
C
13 lines
213 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include <sys/time.h>
|
|
#include "unity.h"
|
|
#include "esp_pm.h"
|
|
|
|
|
|
TEST_CASE("Can dump power management lock stats", "[pm]")
|
|
{
|
|
esp_pm_dump_locks(stdout);
|
|
}
|