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, Is there a means of supressing linker generated warnings? I realise they're there for a reason, but this one's deliberate. I forget the error code, but it's concerned with the location of an interrupt routine within a code bank. It never gets called in a bank switched context, but the routine is copied across to RAM as part of a flash download routine. Thanks, David
Beware! I have seen projects where I were called in to rescue where the problem was found easily by removing warning suppressions. While some warnings may be innocent it is very dangerous to disable them (globally). I suggest you live with the message rather than suppressing all warnings. Erik
Very true, Erik! My previous Client's build routinely spewed out hundreds of warnings, most of which were harmless. I found at least 3 of them which were real bugs!