We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be22013 commit c96fbebCopy full SHA for c96fbeb
connectivity/drivers/emac/TARGET_STM/stm32xx_emac.cpp
@@ -654,8 +654,10 @@ int STM32_EMAC::low_level_input(emac_mem_buf_t **buf)
654
/* Build Rx descriptor to be ready for next data reception */
655
HAL_ETH_BuildRxDescriptors(&EthHandle);
656
657
+#if !(defined(DUAL_CORE) && defined(CORE_CM4))
658
/* Invalidate data cache for ETH Rx Buffers */
659
SCB_InvalidateDCache_by_Addr((uint32_t *)RxBuff.buffer, frameLength);
660
+#endif
661
662
*buf = pbuf_alloc(PBUF_RAW, frameLength, PBUF_POOL);
663
if (*buf) {
0 commit comments