There currently is no practical use to have TactilityHeadless as a subproject. I'm merging it with the Tactility project.
27 lines
433 B
C++
27 lines
433 B
C++
#ifndef ESP_PLATFORM
|
|
|
|
#include "Tactility/service/wifi/WifiSettings.h"
|
|
|
|
namespace tt::service::wifi::settings {
|
|
|
|
#define TAG "wifi_settings_mock"
|
|
|
|
bool contains(const char* ssid) {
|
|
return false;
|
|
}
|
|
|
|
bool load(const char* ssid, WifiApSettings* settings) {
|
|
return false;
|
|
}
|
|
|
|
bool save(const WifiApSettings* settings) {
|
|
return true;
|
|
}
|
|
|
|
bool remove(const char* ssid) {
|
|
return true;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
#endif // ESP_PLATFORM
|