• Allocating initialised array in CODE section
    I need to store an initialised array in code area. The HW is so, that when modifying this array by the program the whole 256-byte page where the array is located must be first erased and then written...
  • Size of data section overflow
    I'm using ADUC843 and I have problem with memory overflow. I'm trying to use only 150 bytes. I tried too declare some data with idata and it helped but now I could declare no more than 250 bytes. I...
  • Sections
    Hello, I am trying to convert a project from uVision 1 (C166 V3.11) to uVision 2 (C166 V4.20). After importing the old project and building it, I get linker errors L110:CANNOT FIND SECTION OR REGBANK...
  • two dimentional array(char) problem
    hi ! I want a table from which i can take char data. so i have used char 2-dim array.my initialization is ok. but complier gives following error : MAIN.C(24): error C242: 'array[]': too many...
  • malloc and two dimensional array ( char * * )
    I want to allocate memory which I can use as a two dimensional array. But the following code is not working unsigned char xdata ** memo; unsigned char i = 0; // n is number of rows // size is number...