在 SMING 框架应用程序上调用 ESP8266 SDK API 函数

Call ESP8266 SDK API function on SMING framework application

我使用的是ESP8266 WiFi芯片和SMING框架。

我想在使用 SMING 框架的应用程序中调用 SDK API 函数。

假设我想打电话给wifi_station_set_reconnect_policy(true)。我如何在 SMING application.cpp 中执行此操作?

SMING只是在SDK之上一层,可以直接调用

方法wifi_station_set_reconnect_policy定义在SDK的user_interface.h中,那么你可以在你的application.cpp中这样调用它:

#include <user_config.h>
#include <SmingCore/SmingCore.h>

void init()
{
    wifi_station_set_reconnect_policy(true);
}