kimodem/include/Config.h

28 lines
358 B
C++

#ifndef KIMODEM_CONFIG_H
#define KIMODEM_CONFIG_H
namespace Config {
// Networking
size_t LastSSID(char *ssid, size_t ssidlen);
void SetLastSSID(const char *ssid);
bool StartTryConnecting();
void SetStartTryConnecting(bool opt);
// Misc.
bool EnableMeter();
void SetEnableMeter(bool opt);
// Misc. control
void FactoryDefaults();
}
#endif