aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32h755cm4/memory.x
diff options
context:
space:
mode:
authorDion Dokter <[email protected]>2024-07-08 16:54:06 +0200
committerDion Dokter <[email protected]>2024-07-08 16:54:06 +0200
commit203297b56912c05d2dd6a009ffeb433fb2ffbea6 (patch)
treefa1708215925ad861d68dc8454069c11ae5c861c /examples/stm32h755cm4/memory.x
parentb1ea90a87e5ce6b16bbc155ad30d6d3473a998bb (diff)
Make clocks repr C.
Add shared data. Modify freq functions to use shared data. Modify examples to use new init/
Diffstat (limited to 'examples/stm32h755cm4/memory.x')
-rw-r--r--examples/stm32h755cm4/memory.x2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32h755cm4/memory.x b/examples/stm32h755cm4/memory.x
index f946b6210..538bac586 100644
--- a/examples/stm32h755cm4/memory.x
+++ b/examples/stm32h755cm4/memory.x
@@ -1,7 +1,7 @@
1MEMORY 1MEMORY
2{ 2{
3 FLASH : ORIGIN = 0x08100000, LENGTH = 1024K /* BANK_2 */ 3 FLASH : ORIGIN = 0x08100000, LENGTH = 1024K /* BANK_2 */
4 RAM : ORIGIN = 0x30000000, LENGTH = 128K /* SRAM1 */ 4 RAM : ORIGIN = 0x10000000, LENGTH = 128K /* SRAM1 */
5 RAM_D3 : ORIGIN = 0x38000000, LENGTH = 64K /* SRAM4 */ 5 RAM_D3 : ORIGIN = 0x38000000, LENGTH = 64K /* SRAM4 */
6} 6}
7 7