Forum: System Workbench for STM32

Blue pill STM32F103C8T6 board issue

Hello,
I have created skeleton code for STM32F103C8T6 board using STM32CubeMX.
There’s function in the code containing two lines:

static void MX_GPIO_Init(void)
{

/* GPIO Ports Clock Enable */
__HAL_RCC_GPIOD_CLK_ENABLE();
__HAL_RCC_GPIOA_CLK_ENABLE();

}
The two functions generate semantic error: type ‘__HAL_RCC_GPIODx_CLK_ENABLE()’ could not be resolved.

What do I wrong?
Thanks in advance
Jacek