hello, i just installed keil4 i am using LPC2148 and tried to compile the prog, it did compile but with few warnings, next when i tried to build the target it tells me 1 error and cannot build target. the error is shown below.
Build target 'Target 1' linking... test1_prog.axf: Error: L6200E: Symbol delay multiply defined (by main.o and lcd.o). test1_prog.axf: Not enough information to list image symbols. test1_prog.axf: Not enough information to list the image map. test1_prog.axf: Finished: 2 information, 0 warning and 1 error messages. Target not created
what can be the possible problem, can anyone please help me.
what can be the possible problem, The problem is stated quite clearly right there:
Error: L6200E: Symbol delay multiply defined (by main.o and lcd.o).
You have two source modules defining the same global name "delay". Don't do that.
Hey thank you so much for that it din click me.. I just tried after correcting it.. it worked well.. Thank you