kimodem/include/Config.h

28 lines
358 B
C
Raw Normal View History

2023-10-07 23:25:17 +00:00
#ifndef KIMODEM_CONFIG_H
#define KIMODEM_CONFIG_H
2023-10-07 06:12:31 +00:00
2023-10-07 20:38:17 +00:00
namespace Config {
2023-10-07 06:12:31 +00:00
// Networking
2023-10-07 09:29:08 +00:00
size_t LastSSID(char *ssid, size_t ssidlen);
void SetLastSSID(const char *ssid);
2023-10-07 06:12:31 +00:00
bool StartTryConnecting();
void SetStartTryConnecting(bool opt);
// Misc.
2023-10-07 20:38:17 +00:00
bool EnableMeter();
void SetEnableMeter(bool opt);
// Misc. control
2023-10-07 06:12:31 +00:00
void FactoryDefaults();
}
#endif