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