I have downloded the control software library for an RFID reader from the philips website and it consists of 8 source files(.C) related to the reader, 3 source files related to the RFID tag, three header files(.H) defining functions and data structures, there is reg51.H and portab.H in there for 8051 specific language definitions and finaly a library binary file control.lib. It could be that control.lib is the library made up by compiling all of the above source and header files. Seperate from all that i have a test source file file that contains main() in order to test the library , so how can that be done in the keil c51 compiler. In other words how can one add a library from outside and use with a source file.
In other words how can one add a library from outside and use with a source file. 1) if not made with Keil, you can't 2) if it is, just include it in the linker list Erik
Erik, do you mind walking me through the process of including the file Control.LIB that i laready have in my liker list. The source file that i have is called TEST.C, it includes a couple of header files, do you think i should add them in the project worksapce on the left? Thank you