Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tools/sdk/ld/eagle.app.v6.common.ld.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,11 @@ SECTIONS

/* all functional callers are placed in IRAM (including SPI/IRQ callbacks/etc) here */
*(.text._ZNKSt8functionIF*EE*) /* std::function<any(...)>::operator()() const */
*(.text._ZNK8delegate6detail12DelegateImplIPvvEclEv) /* delegate::detail::DelegateImpl<void*, void>::operator()() const */
*(.text._ZNK8delegate6detail12DelegateImplIPvvEcvbEv) /* delegate::detail::DelegateImpl<void*, void>::operator bool() const */

/* same thing for circular_queue structure methods used in swserial */
*(.text._ZNK14circular_queue*E9availableEv) /* circular_queue<any, any>::available() const */
} >iram1_0_seg :iram1_0_phdr

.irom0.text : ALIGN(4)
Expand Down