Skip to content

Commit 94815e7

Browse files
decsnyaescolar
authored andcommitted
tests: arm_irq_vector_table: Fix RT/WXXX
Fix preprocessor expression for custom vector table due to OS timer isr being needed. The parentheses are missing. Also add RW6xx to the list which has the same isr needed for ostimer. Signed-off-by: Declan Snyder <[email protected]>
1 parent 768b8bb commit 94815e7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/arch/arm/arm_irq_vector_table/src/arm_irq_vector_table.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,8 @@ vth __irq_vector_table _irq_vector_table[] = {
184184
isr0, isr1, isr2, 0,
185185
rtc_isr
186186
};
187-
#elif defined(CONFIG_SOC_SERIES_IMXRT6XX) || defined(CONFIG_SOC_SERIES_IMXRT5XX) && \
187+
#elif (defined(CONFIG_SOC_SERIES_IMXRT6XX) || defined(CONFIG_SOC_SERIES_IMXRT5XX) || \
188+
defined(CONFIG_SOC_SERIES_RW6XX)) && \
188189
defined(CONFIG_MCUX_OS_TIMER)
189190
/* MXRT685 employs a OS Event timer to implement the Kernel system
190191
* timer, instead of the ARM Cortex-M SysTick. Therefore, a pointer to

0 commit comments

Comments
 (0)