We are using a 2808 processor with CC3.3 and DSPBios 5.33.2. We are running out of flash space.
I noticed a prntf in our map file that is taking 800+ word of space:
.printf 0 0000bba0 0000037d
0000bba0 0000037d BMScfg.obj (.printf)
Our application is not using any printfs. So I conclude it must be something that dspBios is using.
Our TCF file is disabling unneeded OS capability as shown below
bios.GBL.ENABLEALLTRC = 0;
bios.disableMemoryHeaps(prog);
bios.disableRealTimeAnalysis(prog)
bios.disableRtdx(prog);
Is there a way to selectively configure DSPBios to remove the printf?