Merge branch 'bugfix/ip101_hw_reset_include' into 'master'

fix(esp_eth): explicitly include FreeRTOS headers into ip101 driver

See merge request espressif/esp-idf!29063
This commit is contained in:
Bogdan Kolendovskyy
2024-02-28 16:20:35 +08:00

View File

@@ -8,6 +8,8 @@
#include <sys/cdefs.h> #include <sys/cdefs.h>
#include "esp_log.h" #include "esp_log.h"
#include "esp_check.h" #include "esp_check.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_eth_phy_802_3.h" #include "esp_eth_phy_802_3.h"
static const char *TAG = "ip101"; static const char *TAG = "ip101";