user_interface.h 484 B

123456789101112131415161718
  1. #ifndef SDK_OVERRIDES_INCLUDE_USER_INTERFACE_H_
  2. #define SDK_OVERRIDES_INCLUDE_USER_INTERFACE_H_
  3. #include_next "user_interface.h"
  4. bool wifi_softap_deauth(uint8 mac[6]);
  5. uint8 get_fpm_auto_sleep_flag(void);
  6. //force sleep API
  7. #define FPM_SLEEP_MAX_TIME 268435455 //0xFFFFFFF
  8. void wifi_fpm_set_wakeup_cb(void (*fpm_wakeup_cb_func)(void));
  9. bool fpm_is_open(void);
  10. bool fpm_rf_is_closed(void);
  11. uint8 get_fpm_auto_sleep_flag(void);
  12. #endif /* SDK_OVERRIDES_INCLUDE_USER_INTERFACE_H_ */