Browse Source

【神奇的问题】解决DMA访问内存导致的发送失败

main
Lizongdi 1 week ago
parent
commit
d8077b15f5
  1. 7
      STM32H743XG_FLASH.ld

7
STM32H743XG_FLASH.ld

@ -253,6 +253,13 @@ SECTIONS
*(.Rx_PoolSection) *(.Rx_PoolSection)
} >RAM_D2 } >RAM_D2
.dma_buffer (NOLOAD) :
{
. = ALIGN(32);
*(.dma_buffer)
. = ALIGN(32);
} > RAM
/* Remove information from the standard libraries */ /* Remove information from the standard libraries */
/DISCARD/ : /DISCARD/ :
{ {

Loading…
Cancel
Save