esp_eth.h 532 B

12345678910111213141516
  1. /*
  2. * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #pragma once
  7. /**
  8. * Purpose of this file is to create a common header for the typical ethernet usecase,
  9. * so using the ethernet driver and the default glue layer to its network interface.
  10. *
  11. * If you prefer to create a custom network interface or use the Ethernet as a driver only,
  12. * then it is recommended to include the "esp_eth_driver.h" only.
  13. */
  14. #include "esp_eth_driver.h"
  15. #include "esp_eth_netif_glue.h"