mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 14:53:03 +00:00
203297b569
Add shared data. Modify freq functions to use shared data. Modify examples to use new init/
14 lines
268 B
Plaintext
14 lines
268 B
Plaintext
MEMORY
|
|
{
|
|
FLASH : ORIGIN = 0x08100000, LENGTH = 1024K /* BANK_2 */
|
|
RAM : ORIGIN = 0x10000000, LENGTH = 128K /* SRAM1 */
|
|
RAM_D3 : ORIGIN = 0x38000000, LENGTH = 64K /* SRAM4 */
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.ram_d3 :
|
|
{
|
|
*(.ram_d3)
|
|
} > RAM_D3
|
|
} |