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


Printf on a Nucleo STM32F767ZI

I have a Cubemx generated app for a F767ZI nucleo board. I have added syscalls.c to the Src directory and a putchar function to main.c. But printf is still not outputting anything to screen. What am I missing ?

int __io_putchar(int ch) {
// Code to write character ‘ch’ on the UART
HAL_UART_Transmit(&huart1, (uint8_t *)&ch, 1, 0xFFFF);
return ch;
}