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.

15 lines
339 B

3 years ago
3 years ago
3 years ago
3 years ago
  1. #pragma once
  2. #include <stdbool.h>
  3. #include <stdint.h>
  4. typedef struct
  5. {
  6. bool wifi_connect_flag;
  7. uint8_t wifi_max_connect_num;
  8. } wifi_structer_t;
  9. void T_wifi_init(void);
  10. void T_wifi_registered_cb(void);
  11. void T_wifi_start_connect(void);
  12. void T_wifi_stop_connect(void);
  13. bool T_wifi_connect_timeout(void);
  14. void T_wifi_send_data(void);