we are using a C6748 with 7.4.16 compiler
i would like to know how to create a buffer that will not get initialized on creation. i found that the pragma's for "NOINIT" and "PERSISTENT" do not exist in the C6000 compiler (even though it is in the manual - you guys gonna take that out any time?).
we have a buffer that is pragma'd to a data section, and that data section is linked in the command file to a certain location in memory, and i tried to add the "type = NOINIT" to the linker command file to that section as well but that didn't seem to do the trick as the buffer was initialized anyway. so what magic combination of pragmas do i need to do to get a buffer that doesn't get initialized at program load?