Skip to content

Commit

Permalink
comments added
Browse files Browse the repository at this point in the history
  • Loading branch information
papamidas committed Apr 30, 2020
1 parent 703ca8c commit 5684f70
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions STM32H743ZITX_FLASH.ld
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
* opensource.org/licenses/BSD-3-Clause
*
******************************************************************************
*
*
* sections dmabuffer and uninitvars
* added by DM1CR
*
*
*/

/* Entry Point */
Expand Down Expand Up @@ -172,10 +178,18 @@ SECTIONS
} >RAM_D1

/* section for dma buffer in D2 domain so DMA to DAC can run locally */
/* added by DM1CR */
.dma_buffer : /* Space before ':' is critical */
{
*(.dma_buffer)
} >RAM_D2

/* section for sinetable and other variables that require fast access */
/* added by DM1CR */
.uninit_vars : /* Space before ':' is critical */
{
*(.uninit_vars)
} >DTCMRAM

/* Remove information from the compiler libraries */
/DISCARD/ :
Expand Down

0 comments on commit 5684f70

Please sign in to comment.