Hi
I am having trouble trying to include the STM32 ARM STemWIN grahics Library into the Visual Studio Project-GDB. It is a binary compiled library with a file name of “STemWin522_CM4_GCC.a”.
Hi Thanks for the Info
I did this and it compiles without error
However the Library functions do not work.
I i put a Breakpoint on the first function that i call from this Library. It will break, But it will not step into anything.
Is there a way to set the Compiler to be C and not CPP only.?
Most likely your library was compiled without debugging symbols. You need to rebuild it yourself with debugging mode enabled (-ggdb) in order to be able to step into it.
If you want to use Plain C, simply use files with .c extension, they will be compiled as C, not C++.