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

HOW TO ADD sim900 HEADER TO KEIL

how can add sim900(sim900.h) header to keil.
it is possible to add

Parents
  • Place sim900.h (and any source/library it requires) in YOUR project directory, then #include "sim900.h", you could probably place it in different paths if you set those up in the project as include paths for it to search.

    Remember an INCLUDE file is *NOT* a LIBRARY file, and merely provides interfacing information for the compiler to know how to call the functions, not the body of the code that implements them.

Reply
  • Place sim900.h (and any source/library it requires) in YOUR project directory, then #include "sim900.h", you could probably place it in different paths if you set those up in the project as include paths for it to search.

    Remember an INCLUDE file is *NOT* a LIBRARY file, and merely provides interfacing information for the compiler to know how to call the functions, not the body of the code that implements them.

Children