forked from espressif/esp-idf
examples: eventfd: remove IRAM placement of timer ISR callback
esp_vfs_write (a.k.a "write") is not in IRAM, so placing just the ISR callback into IRAM doesn't make the callback IRAM-compatible.
This commit is contained in:
@@ -1,3 +1,2 @@
|
|||||||
idf_component_register(SRCS "eventfd_example.c"
|
idf_component_register(SRCS "eventfd_example.c"
|
||||||
LDFRAGMENTS linker.lf
|
|
||||||
INCLUDE_DIRS ".")
|
INCLUDE_DIRS ".")
|
||||||
|
@@ -2,5 +2,3 @@
|
|||||||
# "main" pseudo-component makefile.
|
# "main" pseudo-component makefile.
|
||||||
#
|
#
|
||||||
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
|
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
|
||||||
|
|
||||||
COMPONENT_ADD_LDFRAGMENTS += linker.lf
|
|
||||||
|
@@ -1,4 +0,0 @@
|
|||||||
[mapping:main]
|
|
||||||
archive: libmain.a
|
|
||||||
entries:
|
|
||||||
eventfd_example:eventfd_timer_group0_isr (noflash)
|
|
Reference in New Issue
Block a user