Home arrow Support arrow Forums

Luminary Micro Forums

purnateja

Fresh Boarder

2008/11/02 08:30

Linking error

Hi ,
Im a newbie to LM3s811.
I just started doing the recently , but when i try to compile I get the following errors while Linking the obj file.
please help me debug

.objhello.axf: Error: L6218E: Undefined symbol I2CMasterInitExpClk (referred from osram96x16.o).

Target not created

login or register to reply

awneil

Gold Boarder

2008/11/03 14:11

Re:Linking error

The message makes the problem clear: you have not provided a definition for I2CMasterInitExpClk

The solution is, thus, clear: you need to provide a definition for that symbol - either by providing the appropriate Source file, or a suitable Library

login or register to reply

LMI scott

Junior Boarder

2008/11/03 22:29

Re:Linking error

Since it compiled the module ok, but didn't link you're including the necessary header files.

Since we link against the whole driver library, I suspect you have an old copy of the driver library sitting around. I suspect this since the I2CMasterInitExpClk() function was not one of the original functions.

login or register to reply