mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 06:42:32 +00:00
24 lines
705 B
Plaintext
24 lines
705 B
Plaintext
|
/*
|
||
|
Memory size for STM32WB55xG with 512K FLASH
|
||
|
*/
|
||
|
|
||
|
MEMORY
|
||
|
{
|
||
|
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 512K
|
||
|
RAM (xrw) : ORIGIN = 0x20000008, LENGTH = 0x2FFF8
|
||
|
RAM_SHARED (xrw) : ORIGIN = 0x20030000, LENGTH = 10K
|
||
|
}
|
||
|
|
||
|
/* Place stack at the end of SRAM1 */
|
||
|
_stack_start = ORIGIN(RAM) + LENGTH(RAM);
|
||
|
|
||
|
/*
|
||
|
* Scatter the mailbox interface memory sections in shared memory
|
||
|
*/
|
||
|
SECTIONS {
|
||
|
TL_REF_TABLE (NOLOAD) : { *(TL_REF_TABLE) } >RAM_SHARED
|
||
|
|
||
|
MB_MEM1 (NOLOAD) : { *(MB_MEM1) } >RAM_SHARED
|
||
|
MB_MEM2 (NOLOAD) : { _sMB_MEM2 = . ; *(MB_MEM2) ; _eMB_MEM2 = . ; } >RAM_SHARED
|
||
|
}
|