• array defining
    i want to send 300 constant values to an array and i defined it in this way code unsigned int a[]= '' 936, 956, 1100, 1208, 1150, 986''; // like these all 300 values but keil software gives error...
  • Using "typedef" to define array
    Hi, I'm using C Comipler V7.10, Vision2 V2.40 with AT89C51SND1C micro. For my program I want to have an array for Names. I know I can do it the following way: unsigned char Names[10][10]; //...
  • large size of array defined in ROM
    It is a bank code project, total 16 banks and 512K byte extern rom. there are two large size of const arrays which both are larger than 10KByte. Using LX51 linker. I definded these two arrays as below...
  • About variables and arrays
    Hi everyone I want to develop a web server using the cygnal 8051 mcu, but I want to know how can I declare a varible or array for the next data: Data "HTTP/1.0 200 OK" , $0d , $0a Data "Content...
  • how to define external a const array ?
    Hi All, I have an array struct's with const data in flash memory defined as follows const SOD_ObjectDictionaryEntry* pSDOEntryTable = SDOEntryTable; This works fine ... I want to use...