• 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...
  • 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...
  • 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...
  • 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...
  • Change from char array to int array R/W nvram over spi
    I am having a problem with get and set nvram over a spi bus. The set function shown below has always worked with "Char array" and "int" types, but will not work with "int array'. Thanks in advance...