We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 568817d commit c48382eCopy full SHA for c48382e
subsys/testsuite/include/zephyr/interrupt_util.h
@@ -211,6 +211,17 @@ static inline void trigger_irq(int irq)
211
z_vim_arm_enter_irq(irq);
212
}
213
214
+#elif defined(CONFIG_CPU_CORTEX_R5) && defined(CONFIG_TIC)
215
+
216
+#include <zephyr/dt-bindings/interrupt-controller/tcc-tic.h>
217
218
+extern void z_tic_arm_enter_irq(int);
219
220
+static inline void trigger_irq(int irq)
221
+{
222
+ z_tic_arm_enter_irq(irq);
223
+}
224
225
#else
226
/* So far, Nios II does not support this */
227
#define NO_TRIGGER_FROM_SW
0 commit comments