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.
Hello,
I'm trying to write some code for the F28004x mcu. I'm using eabi compilier. However, I'm getting an unresolved symbol linking error for the F28x_usDelay, and I don't know what I'm missing here. The details of the error are as follows:
Could anyone please help me out here?
Hi,
The F28004x bitfield files are still in COFF format.
As a workaround you can add the following lines in the delay.asm file. This is done in f28002x and future devices.
.if __TI_EABI__
.asg F28x_usDelay, _F28x_usDelay
.endif
Regards,
Veena