Loading...
 
Skip to main content

System Workbench for STM32


Problem with finding HAL_StatusTypeDef

I had this issue too, and found the correct way to solve it.

Instead of including a specific HAL part (#include "stm32f7xx_hal_gpio.h" in my case), you only have to include the full HAL header (#include "stm32f7xx_hal.h").

This solved all my errors.