- Create `Include/` folder for all main projects - Fix some issues here and there (found while moving things) - All includes are now in `Tactility/` subfolder and must be included with that prefix. This fixes issues with clashing POSIX headers (e.g. `<semaphore.h>` versus Tactility's `Semaphore.h`)
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
|