You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.4 KiB
49 lines
1.4 KiB
10 months ago
|
/*
|
||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2018-09-13 Bernard the first version
|
||
|
*/
|
||
|
#ifndef __SMARTCONFIG_H__
|
||
|
#define __SMARTCONFIG_H__
|
||
|
|
||
|
#define SMARTCONFIG_EVENT_CHANGE_CHANNEL (1 << 0)
|
||
|
#define SMARTCONFIG_EVENT_LOCKED_CHANNEL (1 << 1)
|
||
|
#define SMARTCONFIG_EVENT_COMPLETE (1 << 2)
|
||
|
#define SMARTCONFIG_EVENT_RESTART (1 << 3)
|
||
|
#define SMARTCONFIG_EVENT_STOP (1 << 4)
|
||
|
|
||
|
typedef enum
|
||
|
{
|
||
|
SMARTCONFIG_TYPE_AIRKISS = 0,
|
||
|
SMARTCONFIG_TYPE_JDSMART = 1,
|
||
|
SMARTCONFIG_TYPE_ESPTOUCH,
|
||
|
SMARTCONFIG_TYPE_REALTOUCH,
|
||
|
SMARTCONFIG_TYPE_ALL,
|
||
|
SMARTCONFIG_TYPE_MAX,
|
||
|
} rt_smartconfig_type;
|
||
|
|
||
|
typedef enum
|
||
|
{
|
||
|
SMARTCONFIG_ENCRYPT_NONE,
|
||
|
SMARTCONFIG_ENCRYPT_AES,
|
||
|
} rt_smartconfig_encrypt_type;
|
||
|
|
||
|
typedef int (*rt_smartconfig_result_cb)(rt_smartconfig_type result_type, char *ssid, char *passwd, \
|
||
|
void *userdata, rt_uint8_t userdata_len);
|
||
|
typedef void (*rt_smartconfig_event_handle)(rt_uint32_t event, void *userdata);
|
||
|
|
||
|
int rt_smartconfig_start(rt_smartconfig_type config_type, rt_smartconfig_encrypt_type encrypt_type, char *encrypt, \
|
||
|
rt_smartconfig_result_cb result_cb);
|
||
|
|
||
|
int rt_smartconfig_stop(void);
|
||
|
|
||
|
void rt_smartconfig_set_event_handle(rt_smartconfig_event_handle handle, void *userdata);
|
||
|
|
||
|
char *rt_smartconfig_version(void);
|
||
|
|
||
|
#endif
|