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 6e6a7ad commit 10c6b0eCopy full SHA for 10c6b0e
subsys/testsuite/include/zephyr/interrupt_util.h
@@ -242,6 +242,17 @@ static inline void trigger_irq(int irq)
242
_sw_isr_table[irq - CONFIG_GEN_IRQ_START_VECTOR].arg);
243
}
244
245
+#elif defined(CONFIG_CPU_CORTEX_R5) && defined(CONFIG_TIC)
246
+
247
+#include <zephyr/dt-bindings/interrupt-controller/tcc-tic.h>
248
249
+extern void z_tic_arm_enter_irq(int);
250
251
+static inline void trigger_irq(int irq)
252
+{
253
+ z_tic_arm_enter_irq(irq);
254
+}
255
256
#else
257
#define NO_TRIGGER_FROM_SW
258
#endif
0 commit comments