mirror of
https://github.com/peterantypas/maiana.git
synced 2025-06-08 02:30:21 -07:00
25 lines
377 B
C
25 lines
377 B
C
#ifndef __CONFIGURATION_H__
|
|
#define __CONFIGURATION_H__
|
|
|
|
#include <string.h>
|
|
|
|
typedef enum
|
|
{
|
|
WIFI_OPEN_AP,
|
|
WIFI_SECURE_AP,
|
|
WIFI_STATION
|
|
} wifi_operation_mode_t;
|
|
|
|
wifi_operation_mode_t config_get_wifi_operation_mode();
|
|
|
|
const char *config_get_ssid();
|
|
|
|
const char *config_get_password();
|
|
|
|
const char *config_ap_mac_address();
|
|
|
|
const char *config_st_mac_address();
|
|
|
|
|
|
#endif
|