Hello forum: I have the evaluation board MCB167-NET and I'm using the easyweb program to serve some web pages. The original example has only one web page, but I have added to this three more pages. The problem is that, one of this pages is too long, and I can't build the target because Keil says the unsigned char Webside[]=... is too long,concretely is longer then 4K.I have changed many things, long instead of char, the memory options of the board, the memory reserves for the monitor but nothing. Has anybody a solution or and idea of my problem??? Thank you. Sergio.
What is the exact error message you are getting? Stefan
Hi Sergio. In the compiler manual there is a section called "Limitations of the C166 Compiler Implementation." Among other things it says "The maximum length of a line or a macro definition is 8000 characters." Could it be that you didn't split the line with the contents of the web page into multiple smaller lines? - mike
You ask me about the exact mensage?? Well, the exact mensage is: "string too long (4096:4096)" I thing that the string is longer than 4K (4096) but, I don't believe that I won't be able to put a longer string, this string is short¡¡¡ Thank you