Forum: System Workbench for STM32

OpenSTM workbench frustration

France

Hi Jerry,

If you want to migrate from another toolchain to System Workbench for STM32, there is a few source files you should not copy; these are all the startup and vector table files, as they are provided by the toolchain and should not be part of your code.

I can’t say you which files should not be copied, but probably it will be named startup_xxxx.s or vectorxxx.s or something similar. Moreover you should not copy the link editor script file (usually named xxx.ld).

Moreover you should check that your IRQ handlers use the proper standard names (should be irq_name_IRQHandler, where irq_name is the name of the interrupt to manage); these names are quite standard, so there should be no problem but it’s worth checking.

Bernard (Ac6)