This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 165e7cb1ab7306bd09490a07b9bebce923026488 Author: raiden00pl <[email protected]> AuthorDate: Sun May 31 10:49:16 2026 +0200 arch/arm/stm32f3/stm32f33xxx_pinmap.h: fix compilation fix compilation error Signed-off-by: raiden00pl <[email protected]> --- arch/arm/src/stm32/hardware/stm32f33xxx_pinmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/src/stm32/hardware/stm32f33xxx_pinmap.h b/arch/arm/src/stm32/hardware/stm32f33xxx_pinmap.h index 3d3be1182a6..629efe26b24 100644 --- a/arch/arm/src/stm32/hardware/stm32f33xxx_pinmap.h +++ b/arch/arm/src/stm32/hardware/stm32f33xxx_pinmap.h @@ -150,7 +150,7 @@ /* JTAG/SWD */ #define GPIO_JTDI_0 (GPIO_ALT|GPIO_AF0|GPIO_PORTA|GPIO_PIN15) -#define GPIO_JTDO_TRACES_WO_0GPIO_ALT|GPIO_AF0|GPIO_PORTB|GPIO_PIN3) +#define GPIO_JTDO_TRACES_WO_0 (GPIO_ALT|GPIO_AF0|GPIO_PORTB|GPIO_PIN3) #define GPIO_NJTRST_0 (GPIO_ALT|GPIO_AF0|GPIO_PORTB|GPIO_PIN4) #define GPIO_SWCLK_JTCK_0 (GPIO_ALT|GPIO_AF0|GPIO_PORTA|GPIO_PIN14) #define GPIO_SWDIO_JTMS_0 (GPIO_ALT|GPIO_AF0|GPIO_PORTA|GPIO_PIN13)
