diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-02-24 21:25:09 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-02-24 21:25:09 +0000 |
commit | ffaedac6e66f5efc3261f7e977f60ac7700d6f67 (patch) | |
tree | 899b9783d6796b691f5ff3237bd7d28bbea4974b | |
parent | 2f723cb5a3f827a1b7b8b0c57834f9887049aca5 (diff) | |
download | ChibiOS-ffaedac6e66f5efc3261f7e977f60ac7700d6f67.tar.gz ChibiOS-ffaedac6e66f5efc3261f7e977f60ac7700d6f67.tar.bz2 ChibiOS-ffaedac6e66f5efc3261f7e977f60ac7700d6f67.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3973 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/platforms/STM32/mac_lld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32/mac_lld.c b/os/hal/platforms/STM32/mac_lld.c index cfd8282fc..4b9e42b46 100644 --- a/os/hal/platforms/STM32/mac_lld.c +++ b/os/hal/platforms/STM32/mac_lld.c @@ -464,7 +464,7 @@ void mac_lld_release_transmit_descriptor(MACTransmitDescriptor *tdp) { /* Unlocks the descriptor and returns it to the DMA engine.*/
tdp->physdesc->tdes1 = tdp->offset;
tdp->physdesc->tdes0 = STM32_TDES0_IC | STM32_TDES0_LS | STM32_TDES0_FS |
- STM32_TDES0_OWN;
+ STM32_TDES0_TCH | STM32_TDES0_OWN;
/* If the DMA engine is stalled then a restart request is issued.*/
if ((ETH->DMASR & 0x700000) == 0x600000) {
|