Skip to content

Commit 0c6b337

Browse files
committed
GENERIC_STM32H747_M4: rebuild variant
1 parent 480b3ce commit 0c6b337

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Diff for: variants/GENERIC_STM32H747_M4/defines.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
-DFEATURE_BLE=1
4343
-D__FPU_PRESENT=1
4444
-D__MBED__=1
45-
-DMBED_BUILD_TIMESTAMP=1700729709.578213
45+
-DMBED_BUILD_TIMESTAMP=1705659607.113261
4646
-D__MBED_CMSIS_RTOS_CM
4747
-DMBED_MPU_CUSTOM
4848
-DMBED_TICKLESS

Diff for: variants/GENERIC_STM32H747_M4/libs/libmbed.a

164 Bytes
Binary file not shown.

Diff for: variants/GENERIC_STM32H747_M4/linker_script.ld

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
MEMORY
22
{
33
FLASH (rx) : ORIGIN = CM4_BINARY_START, LENGTH = 0x100000
4-
RAM (rwx) : ORIGIN = 0x10000000 + (((166 * 4) + 7) & 0xFFFFFFF8), LENGTH = 0x48000 - (((166 * 4) + 7) & 0xFFFFFFF8)
4+
RAM_D2 (rwx) : ORIGIN = 0x10000000 + (((166 * 4) + 7) & 0xFFFFFFF8), LENGTH = 0x48000 - (((166 * 4) + 7) & 0xFFFFFFF8)
55
RAM_D3 (xrw) : ORIGIN = 0x38000000, LENGTH = 64K
66
}
7+
#if (CM4_BINARY_START == 0x60000000)
8+
REGION_ALIAS("RAM", FLASH);
9+
#else
10+
REGION_ALIAS("RAM", RAM_D2);
11+
#endif
12+
713
__OPENAMP_region_start__ = 0x38000400;
814
__OPENAMP_region_end__ = 0x38000400 + LENGTH(RAM_D3) - 1K;
915
ENTRY(Reset_Handler)

0 commit comments

Comments
 (0)