mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
a0e3d488da
This commit enables ULP FSM support for esp32s3 and updates ULP FSM code flow for other chips. It adds C Macro support for the ULP FSM instruction set on esp32s2 and esp32s3. The unit tests are also updated to test ULP FSM on ep32s2 and esp32s3.
10 lines
404 B
Makefile
10 lines
404 B
Makefile
ULP_BINUTILS_PREFIX ?= esp32ulp-elf-
|
|
#
|
|
export ULP_AS := $(ULP_BINUTILS_PREFIX)as
|
|
export ULP_LD := $(ULP_BINUTILS_PREFIX)ld
|
|
export ULP_OBJCOPY := $(ULP_BINUTILS_PREFIX)objcopy
|
|
export ULP_OBJDUMP := $(ULP_BINUTILS_PREFIX)objdump
|
|
export ULP_LD_TEMPLATE := $(IDF_PATH)/components/ulp/ld/ulp_fsm.ld
|
|
export ULP_NM := $(ULP_BINUTILS_PREFIX)nm
|
|
export ULP_MAP_GEN := $(IDF_PATH)/components/ulp/esp32ulp_mapgen.py
|