mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-23 03:39:33 +00:00
ulp: add build system integration and example
This commit is contained in:
committed by
Ivan Grokhotkov
parent
573cc7d36f
commit
a6e4e89592
35
components/ulp/ld/esp32.ulp.ld
Normal file
35
components/ulp/ld/esp32.ulp.ld
Normal file
@@ -0,0 +1,35 @@
|
||||
#include "sdkconfig.h"
|
||||
|
||||
#define ULP_BIN_MAGIC 0x00706c75
|
||||
#define HEADER_SIZE 12
|
||||
MEMORY
|
||||
{
|
||||
ram(RW) : ORIGIN = 0, LENGTH = CONFIG_ULP_COPROC_RESERVE_MEM
|
||||
}
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
.text : AT(HEADER_SIZE)
|
||||
{
|
||||
*(.text)
|
||||
} >ram
|
||||
.data :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
*(.data)
|
||||
} >ram
|
||||
.bss :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
*(.bss)
|
||||
} >ram
|
||||
|
||||
.header : AT(0)
|
||||
{
|
||||
LONG(ULP_BIN_MAGIC)
|
||||
SHORT(LOADADDR(.text))
|
||||
SHORT(SIZEOF(.text))
|
||||
SHORT(SIZEOF(.data))
|
||||
SHORT(SIZEOF(.bss))
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user