hi,
MCU-TM4C123
while building a project i am getting an error
linking...
Error: L6218E :Undefined symbol SystemInit(referred from startup_tm4c123.0)
Not enough information to list image message.
.
.
.
.Target not created
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
hi,
MCU-TM4C123
while building a project i am getting an error
linking...
Error: L6218E :Undefined symbol SystemInit(referred from startup_tm4c123.0)
Not enough information to list image message.
.
.
.
.Target not created
Hello All,
When such a error occurs during a link phase, it means that a function has been called in one file but the prototype is missing, Also it may be there in another file but in the file where it is being used the function has to be called with an extern.
As an example, file1.c has a function void MyFunc(void) prototyped. Another file file2.c is just calling this function. The right thing to do is in the file2.c have the function call first declared as
extern void MyFunc(void);
Regards
Amit