I've import Keil project from SDK17.0 with this instruction https://infocenter.nordicsemi.com/index.jsp?topic=%2Fug_gsg_ses%2FUG%2Fgsg%2Fimport_ses.html
After finished import I try to build project but this error showed up
I've import Keil project from SDK17.0 with this instruction https://infocenter.nordicsemi.com/index.jsp?topic=%2Fug_gsg_ses%2FUG%2Fgsg%2Fimport_ses.html
After finished import I try to build project but this error showed up
Hi.
Keil and Segger Embedded Studio use different compilers, so not all code that works in one IDE will work in the other.
This is especially true for inline assembly, which typically uses compiler-specific syntax.
In this case, you must replace app_error_handler_keil.c with app_error_handler_gcc.c.
Best regards,
Didrik
Hi.
Keil and Segger Embedded Studio use different compilers, so not all code that works in one IDE will work in the other.
This is especially true for inline assembly, which typically uses compiler-specific syntax.
In this case, you must replace app_error_handler_keil.c with app_error_handler_gcc.c.
Best regards,
Didrik