mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
28 lines
425 B
C++
28 lines
425 B
C++
#ifndef ESP_TARGET
|
|
|
|
#include "WifiSettings.h"
|
|
#include "Log.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 false;
|
|
}
|
|
|
|
bool remove(const char* ssid) {
|
|
return false;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
#endif // ESP_TARGET
|