【修改】HAL_ETH_RxCpltCallback 提示等级由 error 修改为 info,因为这是一个非致命的问题

This commit is contained in:
SummerGift 2019-06-10 17:52:17 +08:00
parent 680e3ff70d
commit 6a9fb353f7
1 changed files with 1 additions and 1 deletions

View File

@ -383,7 +383,7 @@ void HAL_ETH_RxCpltCallback(ETH_HandleTypeDef *heth)
rt_err_t result;
result = eth_device_ready(&(stm32_eth_device.parent));
if (result != RT_EOK)
LOG_E("RX err = %d", result);
LOG_I("RxCpltCallback err = %d", result);
}
void HAL_ETH_ErrorCallback(ETH_HandleTypeDef *heth)