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


mfloat-abi=soft appears on subdirs

Hello Chris

I modified plugin.xml as follows:

isDefault=”true” -> change to “false” where command=”-mfloat-abi=hard”

isDefault=”false” -> change to “true” where command=”-mfloat-abi=hard”

and restart eclipse with -clean.

Regards
scopa

France

Hi scopa,

Modifying the plugin.xml file (for plugin fr.ac6.mcu.ide I presume) is quite a bad idea for at least two reasons:

  1. Next time you update this plugin, you will have to edit plugin.xml again
  2. It changes the defaukt to hard-float for all MCUs, even those without an FPU


Normally, if you select the proper MCU when creating the project, the FPU selection will be adjusted automatically to hard-float if there is an FPU in the MCU, so editing the plugin.xml file should anyway be totaly useless.

Bernard (Ac6)