Skip to main content
Associate II
October 1, 2024
Question

WiFi with NUCLEO-H753ZI using Embedded Artists 1YN module and interfacing with muRata M2 Adapter Board

  • October 1, 2024
  • 1 reply
  • 1787 views

I am trying to implement WiFi station using NUCLEO-H753ZI using Embedded Artists 1YN module and interfacing with muRata M2 Adapter Board.

I have stm32cubeide 1.15.0 . With it I have downloaded the Infineon/AIROC WiFi-Bluetooth STM32 software package.

I am referring to the WiFi Scan example and implementing it in my board, but I am unable to build the project. I have even added many includes manually. But now I am stuck at a point where I have added the include folder of header file to the project properties, added the header file as include in the c file, but still it is showing error while building.

Has someone done this successfully or does someone have any suggestion?

I am attaching the .zip file of the project for reference.

1 reply

Andrew Neil
Super User
October 1, 2024

@Abhinav99 wrote:

I am stuck at a point where I have added the include folder of header file to the project properties, added the header file as include in the c file...


Have you added that folder to your Include Paths ?

https://community.st.com/t5/stm32cubeide-mcus/files-not-being-recognized-if-inside-folder/m-p/716138/highlight/true#M30405

 


@Abhinav99 wrote:

... but still it is showing error while building..


What error, exactly?

Getting "No such file or directory" when the header does exists usually indicates that it's not in the Include Paths

 

A complex system that works is invariably found to have evolved from a simple system that worked.A complex system designed from scratch never works and cannot be patched up to make it work.
Abhinav99Author
Associate II
October 1, 2024

Yes I know, but I checked and the folder is there in the PATH. I have added the zip file with the error. The error is that the code is not able to reference some structures, of which the header file is present.

Andrew Neil
Super User
October 1, 2024
A complex system that works is invariably found to have evolved from a simple system that worked.A complex system designed from scratch never works and cannot be patched up to make it work.