component/esp32 : clear some minor thingsw about PM and coexistence

This commit is contained in:
Tian Hao
2018-04-03 15:37:28 +08:00
committed by Xia Xiaotian
parent 595ddfd825
commit 58e7464dc0
7 changed files with 134 additions and 60 deletions

View File

@@ -128,3 +128,12 @@ int net80211_printf(const char* format, ...)
va_end(arg);
return res;
}
int coexist_printf(const char* format, ...)
{
va_list arg;
va_start(arg, format);
int res = lib_printf("coexist", format, arg);
va_end(arg);
return res;
}