Resolved! STM32U575Zi Errors on GPIO Configuration
Greetings,I'm struggling to get GPIO configuration to work without hitting the HardFault_Handler. If I configure a single GPIO, like this:__HAL_RCC_GPIOB_CLK_ENABLE();GPIO_InitStruct.Pin = GPIO_PIN_7;GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;GPIO_I...