Loading...
 
Skip to main content

System Workbench for STM32


Problems in import STM32CubeMX generated project

When import an STM32CubeMX generated project under System Workbench for STM32 follow the instruction of openstm32.org. Numerous errors shown:


unknown type name 'GPIO_TypeDef'
'GPIOC' undeclared (first use in this function)


and so on.

In order to solve this problem, a macro definition


#define STM32F769XX


should be added manually

Meanwhile, the STM32F769NIHx_FLASH.ld can't be complied because their is a error in line 55


_estack = %stack%; /* end of RAM */



it should be replaced to


_estack = 0x20080000; /* end of RAM */


then the project can complies well.

If there is any wrong with my precess?