LED GPIO bug in STM32CubeExpansion_Cloud_AWS_H5_V1.1.0 software pack
Hi. There is a minor bug in writing to LEDs when this package is used on the STM32H573I-DK development board.
In ..\Common\cli\logging.c there is the following code at line 77:
HAL_GPIO_WritePin( LED_RED_GPIO_Port, LED_GREEN_Pin, GPIO_PIN_SET );
HAL_GPIO_WritePin( LED_RED_GPIO_Port, LED_RED_Pin, GPIO_PIN_RESET );The first line has the wrong port specified. On boards with both LEDs on the same port this wouldn't be noticed, but on the STM32H573I-DK the LEDs are on different ports.
