Technical discussions about the TI C6000 DSPs (including the c62x, c64x and c67x DSPs).
|
Hi, I'd like to know what's the correct procedure to place data into program memory in C6202. If I symply place my vector variable using DATA_SECTION pragma, the values read from this vector are wrong. Is there any bit to set in some internal control register? Thank you Regards, Alexandre |
|
|
|
Alexandre Freire da Silva Osorio wrote: > Hi, > > I'd like to know what's the correct procedure to place data into program memory in C6202. If I symply place my vector variable using DATA_SECTION pragma, the values read from this vector are wrong. Is there any bit to set in some internal control register? You can not place data in the code memory on this DSP, the CPU can not access it with LDW/STW instructions. The only way you can access it is with DMA. /Regards, Pär Ligander |