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

New getkey

Hi everybody. I've created a new getkey (called TimedGetKey) and with C51 compiler I've generated a new .obj file. How Can I insert this new obj file in my project and replace the older getkey with the new?

Thanks Tonino.

Parents
  • Assuming you are referring to the Keil library _getkey() either:

    1) Rename your function _getkey()
    2) Create a wrapper function called _getkey() that calls your function.

    The linker will automatically link in your _getkey() rather than the library version.

    Stefan

Reply
  • Assuming you are referring to the Keil library _getkey() either:

    1) Rename your function _getkey()
    2) Create a wrapper function called _getkey() that calls your function.

    The linker will automatically link in your _getkey() rather than the library version.

    Stefan

Children