You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In SDK 2.14 the template app_config.h is under core/components/wifi_bt_module/template. However, when creating a new project (QuickStart Panel -> Create or import a project -> Create a new C/C++ project...) including wifi_nxp and using linked sources, a reference to app_config.h is added to the .cproject file in the gnu.c.compiler.option.misc.other section at the SDK path middleware/wifi_nxp/components/wifi_bt_module/template. This latter path does not include app_config.h in SDK 2.14, and when using the github SDK to target version 2.13 (the other version available when using west to checkout the MCUX_2.14.0 tag) these references are not added to the .cproject at all. The inclusion of this erroneous reference causes the project to fail to compile with a fatal error: stdout: No such file or directory referencing the incorrect file path.
If instead the option to copy sources is chosen the .cproject file references a local project path at which app_config.h is expected, however it is missing, presumably because it failed to copy from the same incorrect path during project creation. This also causes the project to fail to compile with the same error, although it unhelpfully does not actually reference any file path or refer to app_config.h at all. The above has been tested whilst targeting the MIMXRT1064-EVK.
It is not immediately clear to me why this app_config.h reference has been added to the gnu.c.compiler.option.misc.other section in SDK version 2.14 yet appears omitted when targeting version 2.13 from the same github SDK, but presuming this is now required, the path is wrong in the generated project configuration and needs to be fixed.
The text was updated successfully, but these errors were encountered:
In SDK 2.14 the template
app_config.h
is undercore/components/wifi_bt_module/template
. However, when creating a new project (QuickStart Panel -> Create or import a project -> Create a new C/C++ project...) including wifi_nxp and using linked sources, a reference toapp_config.h
is added to the.cproject
file in thegnu.c.compiler.option.misc.other
section at the SDK pathmiddleware/wifi_nxp/components/wifi_bt_module/template
. This latter path does not includeapp_config.h
in SDK 2.14, and when using the github SDK to target version 2.13 (the other version available when using west to checkout theMCUX_2.14.0
tag) these references are not added to the.cproject
at all. The inclusion of this erroneous reference causes the project to fail to compile with afatal error: stdout: No such file or directory
referencing the incorrect file path.If instead the option to copy sources is chosen the
.cproject
file references a local project path at whichapp_config.h
is expected, however it is missing, presumably because it failed to copy from the same incorrect path during project creation. This also causes the project to fail to compile with the same error, although it unhelpfully does not actually reference any file path or refer toapp_config.h
at all. The above has been tested whilst targeting the MIMXRT1064-EVK.It is not immediately clear to me why this
app_config.h
reference has been added to thegnu.c.compiler.option.misc.other
section in SDK version 2.14 yet appears omitted when targeting version 2.13 from the same github SDK, but presuming this is now required, the path is wrong in the generated project configuration and needs to be fixed.The text was updated successfully, but these errors were encountered: