• multiple public definition error
    i am getting multiple public definition error. can anyone help me with this. driver.c #include<reg51.h> #include"header.h" sbit RS=P0^4; sbit RW=P0^5; sbit E=P0^6; void lcd_cmd(u8 cmd) { P0=cmd;...
  • multiple public definition error
    i am getting multiple public definition error. can anyone help me with this. driver.c #include<reg51.h> #include"header.h" sbit RS=P0^4; sbit RW=P0^5; sbit E=P0^6; void lcd_cmd(u8 cmd) { P0=cmd;...
  • *** ERROR L104: MULTIPLE PUBLIC DEFINITIONS
    I am using the following code: // Timer3 IRQ: Executed each 10ms void T3TIMI_IRQHandler (void) __irq { GPIO_BitWrite(GPIO2, 15, ~GPIO_BitRead(GPIO2, 15)); TIM_FlagClear(TIM3, TIM_TO_IT);...
  • ERROR L104: MULTIPLE PUBLIC DEFINITIONS
    I am two C files in a project. 1. main.c 2. rtc.c and third one is header file for both in which all prototypes are defined. I want to use a bit variables named aon and aoff in both files. Now...
  • Error L104 Multiple public definitions
    I have splitted a C file in to parts and compiled it and it is compiling and I am receiving error message while linking and NO error if compiled as a single file. Help required. Thanks in advance...