network_ethernet.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 "accessors.h"
  26. #include <string.h>
  27. #include "esp_netif_defaults.h"
  28. #include "Config.h"
  29. #include "esp_rom_gpio.h"
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif
  33. typedef struct {
  34. bool valid;
  35. bool rmii;
  36. bool spi;
  37. sys_dev_eth_models model;
  38. esp_eth_handle_t handle;
  39. esp_netif_config_t * cfg_netif;
  40. spi_device_interface_config_t * devcfg;
  41. // This function is called when the network interface is started
  42. // and performs any initialization that requires a valid ethernet
  43. // configuration .
  44. void (*init_config)(sys_dev_eth_config * config);
  45. esp_err_t (*start)(spi_device_handle_t spi_handle,sys_dev_eth_config * config);
  46. } network_ethernet_driver_t;
  47. typedef network_ethernet_driver_t* network_ethernet_detect_func_t(sys_dev_eth_config * config);
  48. network_ethernet_driver_t* network_ethernet_driver_autodetect();
  49. void destroy_network_ethernet();
  50. void init_network_ethernet();
  51. bool network_ethernet_wait_for_link(uint16_t max_wait_ms);
  52. void network_ethernet_start_timer();
  53. bool network_ethernet_is_up();
  54. bool network_ethernet_enabled();
  55. esp_netif_t *network_ethernet_get_interface();
  56. #ifdef __cplusplus
  57. }
  58. #endif