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


You are viewing a reply to STM32F4 HAL Driver Callbacks  

STM32F4 HAL Driver Callbacks

France

Hi Matt,

Yes, the HAL CAN Callback is called in an ISR context and should

  1. be kept short
  2. only call fromISR FreeRTOS functions

Generating various events from the ISR (using xQueueSendFromISR) is fine but calling back the HAL CAN driver to send data is probably too much (and may even be a source of race conditions...) so this should be defered to some (possibly high priority) task.

Bernard (Ac6)