mirror of
https://github.com/apache/nuttx.git
synced 2026-08-07 21:47:17 +00:00
Kinetis enet: leave the write buffer wrap bit alone. The wrap buffer bit is initialized when the buffers are set up and should not be changed later
This commit is contained in:
parent
6ba74a281a
commit
36408697ca
1 changed files with 1 additions and 1 deletions
|
|
@ -386,7 +386,7 @@ static int kinetis_transmit(FAR struct kinetis_driver_s *priv)
|
|||
txdesc->bdu = 0x00000000;
|
||||
txdesc->status2 = TXDESC_INT | TXDESC_TS; /* | TXDESC_IINS | TXDESC_PINS; */
|
||||
#endif
|
||||
txdesc->status1 = (TXDESC_R | TXDESC_L | TXDESC_TC | TXDESC_W);
|
||||
txdesc->status1 |= (TXDESC_R | TXDESC_L | TXDESC_TC);
|
||||
|
||||
/* Start the TX transfer (if it was not already waiting for buffers) */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue