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 The naked Attribute  

The naked Attribute

France

Hi,

On Cortex-M based processors the “naked” attribute should not be used for ISRs; the processor itself does what is needed so that a normal function can be used as an interrupt handler. The prototype should be:
void ''ISRname''_IRQHandler(void);


Regarding the ISR code, yes, your ISR should only use FromISR versions of the FreeRTOS functions.

Bernard (Ac6)