Hello @WPG_Liam,
I hope you are doing well.
It appears that the error is indicating that the compiler is unable to find the "stdio.h" header file. This file is a standard C library header, and its absence typically indicates a problem with the development environment or the included paths.
Please ensure that you have a complete and correctly configured cross-compilation environment for your target platform. This includes the necessary toolchain, libraries, and headers. Make sure that the toolchain is in your system's PATH.
One can add include paths using the -I option in the Makefile.
For example:
make
Copy code
CFLAGS += -I/path/to/your/include/directory
Check Toolchain Compatibility:
Ensure that the cross-compiler you are using is compatible with the target platform and the BSP version. The toolchain should match the architecture and system libraries of your target platform.
Please confirm that the necessary header files, including "stdio.h," are present in the toolchain's include directory. If they are missing, you may need to install the corresponding development package for the toolchain.
I hope this helps!
Thanks & Regards,
Sanket Parekh