Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 ESP8266 WiFi 芯片和 SMING 框架。
我想在使用 SMING 框架的应用程序中调用 SDK API 函数。
假设我想调用wifi_station_set_reconnect_policy(true). 如何在 SMING application.cpp 中执行此操作?
wifi_station_set_reconnect_policy(true)
SMING只是SDK之上的一层,可以直接调用。
该方法在 SDKwifi_station_set_reconnect_policy中定义user_interface.h,然后您可以application.cpp像这样调用它:
wifi_station_set_reconnect_policy
user_interface.h
application.cpp
#include <user_config.h> #include <SmingCore/SmingCore.h> void init() { wifi_station_set_reconnect_policy(true); }