Loading...
 

Zephyr project on STM32

   Zephyr Workbench, a VSCode extension to manage Zephyr on STM32.
It enables users to easily create, develop, and debug Zephyr applications.
Main features:
  • Install host dependencies.
  • Import toolchain and SDK.
  • Create, configure, build and manage apps.
  • Debug STM32.
You can directly download it from the VSCode marketplace
For more details, visit the Zephyr Workbench

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