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


Multitude of HAL_RCC not resolved errors

I included a simple toggle of one IO pin and I still get the same error when attempting to run the project. The program in Main.c is this:

while (1)
{
/* USER CODE END WHILE */
HAL_GPIO_TogglePin(GPIOC, GPIO_PIN_0);
/* Insert delay 100 ms */
HAL_Delay(200);
/* USER CODE BEGIN 3 */

}

no errors during complile