Hi,i am doing the banking project. In my project there are 8 banks. From main.c source file i am calling one function.The prototype is defined in define.h file for this function as extern.This define.h id included in main.c and display.c both.Definition of this function is in other source file.
For compiling this is not giving any error. But while linking it is giving me the Linking error L1 & L2.
Warning L1: Unresolved Externel Symbol. PutChar16_Code_X( {this is function name)
Warning L2: Reference made to unresolved Externel PutChar16_Code_X(
if you miss the prototype, the compiler will complain. if you miss the routine, the linker will complain.
if you look at the linker M51 you will see that the routine is missing. Fix: path? libary includes in the build? module includes in tghe build?
Erik