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 do I hide my module ?

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

Parents


  • 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.

Reply


  • 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.

Children
No data