• Unresolved external
    I started a new project with an LPC2106 cpu. There are two files in it: blinky.c and time.c In Blinky.c I declare: extern void init_time(void); And call it in the main function. Function is written...
  • UNRESOLVED EXTERNAL SYMBOLS
    I am really new to 8051 programming, but my first program gives this warning: UNRESOLVED EXTERNAL SYMBOL SYMBOL: ?C_START MODULE: STARTUP.obj (?C_STARTUP) what shuld i do?
  • Unresolved external symbol warning
    I am trying to write a program for cypress FX2 chip. But I am getting the following warnings: *** WARNING L1: UNRESOLVED EXTERNAL SYMBOL SYMBOL: USBIE MODULE: ex1.obj (EX1) *** WARNING L2: REFERENCE...
  • warning: unresolved external symbol
    would appreciate if someone can tell me c and asembly code in the Uvision3? my source code as follows #include <reg51.h> #include <C51S.LIB> #include<stdio.h> #include "setUpSerPort.h" void main...
  • UNRESOLVED EXTERNAL SYMBOL
    When I compile following simple Code I will get L1 error, Please let me know what's the wrong with this code: #include <reg51.h> void main(void) { #pragma asm NOP NOP NOP #pragma endasm } ...