fix(esp_eth): explicitly include FreeRTOS headers into ip101 driver to ensure availability of vTaskDelay

This commit is contained in:
Bogdan Kolendovskyy
2024-02-15 13:19:38 +01:00
committed by Ondrej Kosta
parent 12de4603c0
commit eb8985886d

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";