From 300adf004573ed8f4f56251886e2a9d3a7f42589 Mon Sep 17 00:00:00 2001 From: Ondrej Kosta Date: Mon, 24 Feb 2025 09:15:56 +0100 Subject: [PATCH] fix(esp_eth): fixed emac_ll_pause_frame_enable for ESP32P4 --- components/hal/esp32p4/include/hal/emac_ll.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/hal/esp32p4/include/hal/emac_ll.h b/components/hal/esp32p4/include/hal/emac_ll.h index 33a5ed8a5c..b06b57ddb0 100644 --- a/components/hal/esp32p4/include/hal/emac_ll.h +++ b/components/hal/esp32p4/include/hal/emac_ll.h @@ -691,7 +691,7 @@ static inline void emac_ll_clock_enable_rmii_output(void *ext_regs) static inline void emac_ll_pause_frame_enable(void *ext_regs, bool enable) { - HP_SYSTEM.sys_gmac_ctrl0.sys_phy_intf_sel = enable; + HP_SYSTEM.sys_gmac_ctrl0.sys_sbd_flowctrl = enable; } #ifdef __cplusplus