We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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.
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
You will have to declare you function exactly to match stdio.h