This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

CMSIS Configuration Wizard Problem

Hi,

I tried to enable the CMSIS in my CUSTOM Project but I see the following error and the CMSIS configurator is empty. Please guide what would be the possible problem.

Although when I run it on the SDK examples the CMSIS configurator works fine. But it is not opening the sdk_config file in my custom project.

I have followed all the help from the nordic portal but didn't found any similar issue. and I have followed these links

https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.sdk5.v14.1.0%2Fsdk_config.html

https://www.youtube.com/watch?v=b0MxWaAjMco

and this https://www.youtube.com/watch?v=57VCm6o626U

Thank you

Parents
  • Hi,

    It seems the sdk_config.h file you are trying to open is invalid, and therefore the CMSIS Configurator tool is unable to parse it. You need to make sure the sdk_config.h file is valid for it to work. You could start with a known good file form an SDK example, and adapt it. If you check regularly, you will see if you make any mistakes.

    I also second 's suggestion. Keil is a much better editor for sdk_config.h files. Even if you don't use it for anything else, it is worth having for just that task (and in that case, the free version works perfectly since the code size limit only matters when you build the project).

  • Hi,

    What do you mean by the sdk_config.h is invalid. I mean I'm using it in my project and it is working fine on it. Can you please elaborate more about invalidity and how to solve it.

    Thanks

  • Hi,

    It might be working fine in the project, ut there is a syntax that there that is not relevant for the preprocessor, but only for CMSIS configurator tool. It quickly becomes difficult to parse this manually, so again my suggestion is to start with something small that works, and add on. When it stops working (is no longer parsed correctly), you know you are close to the issue. I do not have any better suggestions for how to solve it.

Reply
  • Hi,

    It might be working fine in the project, ut there is a syntax that there that is not relevant for the preprocessor, but only for CMSIS configurator tool. It quickly becomes difficult to parse this manually, so again my suggestion is to start with something small that works, and add on. When it stops working (is no longer parsed correctly), you know you are close to the issue. I do not have any better suggestions for how to solve it.

Children
Related