STM32F746-disco project: How to limit the application end address to 0x0807FFFF?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-09-01 4:54 PM
Hi all,
At the bottom of the readme file for the BSP project for this board says:
How do you limit the application end address?
Solved! Go to Solution.
Labels:
- Labels:
-
STM32F7 Series
1 ACCEPTED SOLUTION
Accepted Solutions
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-09-01 5:33 PM
In the linker script, set the FLASH section to be 512kB in length:
/* Memories definition */
MEMORY
{
...
FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 512K
}
If you feel a post has answered your question, please click "Accept as Solution".
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-09-01 5:33 PM
In the linker script, set the FLASH section to be 512kB in length:
/* Memories definition */
MEMORY
{
...
FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 512K
}
If you feel a post has answered your question, please click "Accept as Solution".
