Hello.
I want to use the CMSIS configuration wizard.
It is work in the example but not in my project.
From looking at youtube I found what I need to add to tool.xml using tFile->Open studio files->external tool configuration.
This lines was added:
<item name="Tool.CMSIS_Config_Wizard" wait="no">
<menu>&CMSIS Configuration Wizard</menu>
<text>CMSIS Configuration Wizard</text>
<tip>Open a configuration file in CMSIS Configuration Wizard</tip>
<key>Ctrl+Y</key>
<match>*config*.h</match>
<message>CMSIS Config</message>
<commands>
java -jar "$(CMSIS_CONFIG_TOOL)" "$(InputPath)"
</commands>
It still didn't see the wizard open when right click on the sdk_confige, but then I also read I need this file CMSIS_Configuration_Wizard.jar in the project which place in the examples here external_tools\cmsisconfig\CMSIS_Configuration_Wizard.jar
But this is not enough, because need also macro for CMSIS_CONFIG_TOOL. SO I add the full path to CMSIS_Configuration_Wizard.jar and only then I could open the wizard.
But I also it make the change in the Segger embedded itself so example project see also my new path. SO if I now delete the jar from my project I couldn't open the wizard even from new example.
1.So I was thinking is there a globe CMSIS_Configuration_Wizard.jar in SES folder use by all (i all ready change it so I don't know if it is exist)?
2. Is there a way to build it locally so when I pass the project to new PC it still will find the jar? I try to start with $(ProjectDir) but it won't work.
3. Is there a good tutorial explain all from start ?
Regards
Bar.