So I'm having a bit of a problem here in my MSP430 coding:
I have 3 ".c" files and one .h file in my program here. My .h file has only declarations of functions (UART, Initilizations) which these 2 areas are split into 2 of the .c files (Uart.c & Initials.c) I then have my main file (Main.c) that includes the header file and the 2 other .c files. I cannot seem to find where the issue is as again. My .h only has declarations such as
void initial(void);
void ConfigAdc(void);
and so on. It is saying that these functions (and some others) are redefined and I only define them in the .c file they are linked too