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 FPU going too slow  

FPU going too slow

France

Hi Florent,

Yes the main reason to run slower may be to save power; however if you carefully use WFI (or WFE) for sleeping when you don’t have anything to do (waiting to be woken up by some interrupt, even masked for WFI, only unmasked ones for WFE) then you may achieve about the same power consumption at 100MHz, but have better response times due to the higher CPU frequency.

Of course this is only valid if you are interrupt-driven; if you use polling, you can’t use WFI/WFE and then decreasing teh CPU frequency to what gives you the needed performance will provide you with better battery life.

Bernard (Ac6)