|
Greetins I am trying to use a large lookup table of about 12k float variables on a c6701 using CCS 2. The lookup c file look like this: #pragma data_sect (temp,SDRAM section) const float temp[]={var1, var2, . . . var12k}; the problem is in link time the linker output an error messege like: error: cant allocate .bss Why sould be a memory allocation problem with the .bss (on the IDRAM) when i try to allocate an SDRAM memory with this lookup table? Is the any other way to implement this large lookup table? |