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.
Does anyone know how to avoid a data segment overflow caused by the local data for uncalled functions being permanently allocated? Better still to prevent such functions being included in the final output at all? I am using Keil C51 V6. Thanks Simon Fisher
How about some #ifs to prevent building functions not required for the particular project? Or maybe move the functions to separate files, so that each project only includes those files which it actually needs. Otherwise, my previous suggestions of moving the locals or manually adjusting the overlaying?