2015-12-28 08:13:02 +01:00
|
|
|
#ifndef SDK_OVERRIDES_INCLUDE_USER_INTERFACE_H_
|
|
|
|
#define SDK_OVERRIDES_INCLUDE_USER_INTERFACE_H_
|
|
|
|
|
2019-07-23 06:22:38 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2015-12-28 08:13:02 +01:00
|
|
|
#include_next "user_interface.h"
|
|
|
|
|
|
|
|
bool wifi_softap_deauth(uint8 mac[6]);
|
2016-08-27 11:46:24 +02:00
|
|
|
uint8 get_fpm_auto_sleep_flag(void);
|
|
|
|
|
2017-04-04 21:31:06 +02:00
|
|
|
//force sleep API
|
|
|
|
#define FPM_SLEEP_MAX_TIME 268435455 //0xFFFFFFF
|
|
|
|
void wifi_fpm_set_wakeup_cb(void (*fpm_wakeup_cb_func)(void));
|
|
|
|
bool fpm_is_open(void);
|
|
|
|
bool fpm_rf_is_closed(void);
|
|
|
|
uint8 get_fpm_auto_sleep_flag(void);
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-28 08:13:02 +01:00
|
|
|
#endif /* SDK_OVERRIDES_INCLUDE_USER_INTERFACE_H_ */
|