Merge pull request #3404 from DavidLin1577/patch-2

[bsp/stm32]Fixed typo 'lenth' in drv_eth.c
This commit is contained in:
Bernard Xiong 2020-02-24 22:15:13 +08:00 committed by GitHub
commit af4541c749
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
/*
* Emac driver uses CubeMX tool to generate emac and phy's configuration,
* the configuration files can be found in CubeMX_Config floder.
* the configuration files can be found in CubeMX_Config folder.
*/
/* debug option */
@ -248,7 +248,7 @@ rt_err_t rt_stm32_eth_tx(rt_device_t dev, struct pbuf *p)
/* Prepare transmit descriptors to give to DMA */
/* TODO Optimize data send speed*/
LOG_D("transmit frame lenth :%d", framelength);
LOG_D("transmit frame length :%d", framelength);
/* wait for unlocked */
while (EthHandle.Lock == HAL_LOCKED);