We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e25f9e9 commit 4d5c2d8Copy full SHA for 4d5c2d8
tools/sdk/ld/eagle.app.v6.common.ld.h
@@ -142,6 +142,11 @@ SECTIONS
142
143
/* all functional callers are placed in IRAM (including SPI/IRQ callbacks/etc) here */
144
*(.text._ZNKSt8functionIF*EE*) /* std::function<any(...)>::operator()() const */
145
+ *(.text._ZNK8delegate6detail12DelegateImplIPvvEclEv) /* delegate::detail::DelegateImpl<void*, void>::operator()() const */
146
+ *(.text._ZNK8delegate6detail12DelegateImplIPvvEcvbEv) /* delegate::detail::DelegateImpl<void*, void>::operator bool() const */
147
+
148
+ /* same thing for circular_queue structure methods used in swserial */
149
+ *(.text._ZNK14circular_queue*E9availableEv) /* circular_queue<any, any>::available() const */
150
} >iram1_0_seg :iram1_0_phdr
151
152
.irom0.text : ALIGN(4)
0 commit comments