2015-11-04 11:03 AM
Is there a tutorial/ resource page, where it I can find some guidelines about converting a KEIL project to IAR? I tried myself, but couldn't do it ( I am new in IAR toolchain). More specifically, I am looking to convert STM32L15XX_FLASH.ld and
startup_stm32l15XX_md_vl.s linker files into IAR compitable format. #iar #keil2015-11-04 12:17 PM
.ld suggests GNU linker script
There are IAR assembler files down in the CMSIS Device directoriesSTM32L1xx_StdPeriph_Lib_V1.3.1\Libraries\CMSIS\Device\ST\STM32L1xx\Source\Templates\iar\startup_stm32l1xx_md.sThe L1 Standard Peripheral Libraries come with a Template, clone the template, see that build and then add your own files. Use your merge tool of choice to bring things in.STM32L1xx_StdPeriph_Lib_V1.3.1\Project\STM32L1xx_StdPeriph_Templates\EWARM\Project.ewpDoing it from scratch, check the defines passed to the compiler, and manually add the files, and define the memory map of the part being used.