network_wifi.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. *
  3. * Sebastien L. 2023, sle118@hotmail.com
  4. * Philippe G. 2023, philippe_44@outlook.com
  5. *
  6. * This software is released under the MIT License.
  7. * https://opensource.org/licenses/MIT
  8. *
  9. * License Overview:
  10. * ----------------
  11. * The MIT License is a permissive open source license. As a user of this software, you are free to:
  12. * - Use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of this software.
  13. * - Use the software for private, commercial, or any other purposes.
  14. *
  15. * Conditions:
  16. * - You must include the above copyright notice and this permission notice in all
  17. * copies or substantial portions of the Software.
  18. *
  19. * The MIT License offers a high degree of freedom and is well-suited for both open source and
  20. * commercial applications. It places minimal restrictions on how the software can be used,
  21. * modified, and redistributed. For more details on the MIT License, please refer to the link above.
  22. */
  23. #pragma once
  24. #include "network_manager.h"
  25. #include "Config.h"
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. esp_netif_t * network_wifi_start();
  30. void destroy_network_wifi();
  31. esp_err_t network_wifi_set_connected(bool connected);
  32. /**
  33. * @brief Registers handler for wifi and ip events
  34. */
  35. void network_wifi_register_handlers();
  36. /**
  37. * @brief Clear the list of access points.
  38. * @note This is not thread-safe and should be called only if network_status_lock_structure call is successful.
  39. */
  40. void network_wifi_clear_access_points_json();
  41. esp_netif_t * network_wifi_config_ap();
  42. void network_wifi_filter_unique( wifi_ap_record_t * aplist, uint16_t * aps);
  43. esp_err_t wifi_scan_done();
  44. esp_err_t network_wifi_start_scan();
  45. esp_err_t network_wifi_load_restore(queue_message *msg);
  46. esp_err_t network_wifi_order_connect(queue_message *msg);
  47. esp_err_t network_wifi_disconnected(queue_message *msg);
  48. esp_err_t network_wifi_start_ap(queue_message *msg);
  49. esp_err_t network_wifi_handle_event(void* arg, esp_event_base_t event_base, int32_t event_id, void* event_data);
  50. bool is_wifi_up();
  51. void network_wifi_get_status();
  52. esp_err_t network_wifi_add_ssid(const char* ssid, const char* password);
  53. void network_wifi_clear_config();
  54. void network_wifi_get_status();
  55. esp_netif_t *network_wifi_get_interface();
  56. esp_netif_t *network_wifi_get_ap_interface();
  57. bool network_wifi_is_ap_sta_mode();
  58. bool network_wifi_is_sta_mode();
  59. bool network_wifi_is_ap_mode();
  60. bool network_wifi_sta_config_changed();
  61. void network_wifi_global_init();
  62. bool network_wifi_is_known_ap(const char * ssid);
  63. esp_err_t network_wifi_connect(const char * ssid, const char * password);
  64. esp_err_t network_wifi_connect_ssid(const char * ssid);
  65. esp_err_t network_wifi_connect_active_ssid();
  66. esp_err_t network_wifi_remove_ssid(const char * ssid);
  67. esp_err_t network_wifi_set_sta_mode();
  68. size_t network_wifi_get_known_count();
  69. void network_wifi_activate_strongest_ssid();
  70. sys_net_auth_types network_wifi_get_auth_type(const wifi_auth_mode_t mode) ;
  71. #ifdef __cplusplus
  72. }
  73. #endif