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.
Hello , there : Could someone teach me how do I hide my every module.c except one specified that any others who want to modify some variables just could modify that at the specific file ? PS. Please show me with e-mail. morris@coretronic.com Thank you,all. Morris
1. have your project built and get an object file for every module.c 2. remove all module.c from your project directory except the one you allow others to modify. This modifiable C file should have its own variables. 3. after others modify that one C file, ask them to compile that single file, and do a link (not build !). The linking process will pick up the remaining object files in the directory and build you a usable HEX code. Let me know if this works.