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'm trying to disable some disturbing warnings (the generated code is fine; don't worry) but the only I find is the warninglevels (0, 1 or 2).
Is there any directive to disable a specific Warning in the C51 compiler?
Sorry. Forgot the context:
"... so many output that it could easily hide some other more important warnings simply because you are not going revise 200 warnings each time that you compile."
Pipe the error output through sed to delete the warnings you don't care about.
If sed is not available, grep is quite useful. Just use -v to invert the matching rule.
I want to get the answer too.
Dan Henry wrote: "Pipe the error output through sed to delete the warnings you don't care about."
Thanks, this would be a useful work around. With the advantage that it can configure more selectively. But how can you integrate the sed/grep into the uVision3 IDE, so that it filter the compiler/linker output?