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.
I got a demo sources from our chip vendor. It can be compiled successfully! However, after I comment out some functions, the compiler says that IData Space overflow. When I check the MAP file, I find that there is no ?STACK. Why? I donot add any new file to the project, nor drop any file from the project. I only comment out several function calls in a file. Why? Thanks a lot!
Thanks for your explaination! and I think it is quite correct! Thanks I try add if(0) ... but still cannot. Space overflow. I will try use OVERLAY directive.
"I try add if(0) ... but still cannot. Space overflow." I think the optimiser is too clever to be fooled by this. Try: if(!SP) { FnCall(); } instead.