Question
STM32CubeMX inconsistent indentation for MX_TouchGFX_Process()
If I enable USB host and TouchGFX without OS I get the following generated code:
/* USER CODE BEGIN WHILE */
while (1)
{
/* USER CODE END WHILE */
MX_USB_HOST_Process();
MX_TouchGFX_Process();
/* USER CODE BEGIN 3 */
}
/* USER CODE END 3 */As you can see MX_TouchGFX_Process() isn't indented properly.
I want this:
/* USER CODE BEGIN WHILE */
while (1)
{
/* USER CODE END WHILE */
MX_USB_HOST_Process();
MX_TouchGFX_Process();
/* USER CODE BEGIN 3 */
}
/* USER CODE END 3 */
