More SWDIO/SWCLK bugs for STM32WL33 generated code
I have found another bug in SWDIO code generation. I previously reported that no code is generated for SWCLK, but if both are relocated, SWDIO is also incorrect. The .Alternate uses a define of GPIO_AF1_SYS, which does not exist in stm32wl3x_hal_gpio_ex.h. The correct define should be GPIO_AF1_SWDIO, which is.
Generated code:
GPIO_InitStruct.Alternate = GPIO_AF1_SYS;
Correct to:
GPIO_InitStruct.Alternate = GPIO_AF1_SWDIO;
