Posted on December 07, 2017 at 10:08Hi David,as far as enabling the TX callback is concerned, you can use the provided examples. In low_level_init() add the above mentioned two lines of code. For example, you can add them after initializing descript...
Posted on October 20, 2017 at 13:01Hi,in case that someone needs it:I got HAL_ETH_TxCpltCallback() to fire by adding the following two lines:__HAL_ETH_DMA_ENABLE_IT((heth), ETH_DMA_IT_NIS | ETH_DMA_IT_R|ETH_DMA_IT_T);__HAL_ETH_DMATXDESC_ENABLE_IT(he...