• LARGE ARRAY
    Hi... Is there any way to declare large size of array? example: char arr[200*1024];//200kb Thanks
  • to store an array in flash to specific address
    Hi I have an array of unsigned chars, like: MyArray[10] = {1,2,3,4,5}; How to program this value in flash memory to specific address. thanks
  • large Bit arrays
    hello to everyone, is it possible to have very large Bit-arrays? About 20000 Bit's <=> 2500Bytes. :-)
  • init of large arrays
    Hi all, what would be the best way to init a huge array, which will never change his values? Will the array affect the stack if I use const aray[][] or should I use static const array[][]? What...
  • Indexing large arrays
    I want to have an array that is larger an 65535 bytes. I need to be able to address this array a byte at a time. Can I simply use a index that is defined as a long? Do I have to break the array up...