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:
Ivan Grokhotkov
2021-04-19 17:20:13 +02:00
parent 80213b6203
commit 7c60ba8a7d
3 changed files with 0 additions and 7 deletions

View File

@@ -1,3 +1,2 @@
idf_component_register(SRCS "eventfd_example.c"
LDFRAGMENTS linker.lf
INCLUDE_DIRS ".")

View File

@@ -2,5 +2,3 @@
# "main" pseudo-component makefile.
#
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
COMPONENT_ADD_LDFRAGMENTS += linker.lf

View File

@@ -1,4 +0,0 @@
[mapping:main]
archive: libmain.a
entries:
eventfd_example:eventfd_timer_group0_isr (noflash)