This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

keil compiler usage

Hello everyone

I want to make a project using two already made user libraries (not standard) build by KEIL compiler.
I am having source code of both the library.I included that library in my project and able to build my project successfully. I am able to call function of that library.
But to study definition of that function i have to open those library project in KEIL compiler separately.
My question is it possible to go into function definition of those library by my project.

Thanks & Regards
kumar

  • No, they are binary blobs. The purpose of libraries is to abstract functionality.

    Your "definitions" would be in an include file providing the prototypes for the function calls, and structures, enums, etc used at the interfaces.

    If you want the library source files in your project, create a group, and drop them in, and let the compiler build everything.