mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-10-01 06:11:03 +00:00
Fixed defmt on direct-boot mode
This commit is contained in:
parent
dd1f94f347
commit
c896e6c8d2
@ -110,6 +110,16 @@ SECTIONS
|
||||
_ebss = .;
|
||||
} > REGION_BSS
|
||||
|
||||
/* ### .uninit */
|
||||
.uninit (NOLOAD) : ALIGN(4)
|
||||
{
|
||||
. = ALIGN(4);
|
||||
__suninit = .;
|
||||
*(.uninit .uninit.*);
|
||||
. = ALIGN(4);
|
||||
__euninit = .;
|
||||
} > REGION_BSS
|
||||
|
||||
/* fictitious region that represents the memory available for the heap */
|
||||
.heap (NOLOAD) :
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user