pm: initial version of power management APIs

This commit is contained in:
Ivan Grokhotkov
2017-09-22 23:29:33 +08:00
parent 4798b7d775
commit 47e3c9dd4b
3 changed files with 396 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#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);
}