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.

LAUNCHXL-F280025C: error #10234-D: unresolved symbols remain

Part Number: LAUNCHXL-F280025C
Other Parts Discussed in Thread: C2000WARE

Hi,

I have got unresolved symbols remain errors, don't which parts's missing ? 

e.g. GIPO_setPadConfig symbol, I have included gpio header

driverlib path included ? 

Linked Resources is empty, could not add driverlib.lib there 

include path for compiler 

search path for Linker 

anything else missing ? 

Danny

  • Hi Danny,

    I think there is something wrong with the projectspec. The file paths might not be included correctly, can you please share the projectspec for further analysis.

    Can you click on the .h file and see if it is pointing to any location in the SDK. I can see dcsm.h and sysctl.h also added in the same scope. If they are pointing correctly, probably the gpio.h also should point to the location.

    Else you can try to add those files explicitly in the project and build the project (right click on project > add files > select the files > link to project)

    Thanks

    Aswin

  • Hi,

    I think there is something wrong with the projectspec. The file paths might not be included correctly, can you please share the projectspec for further analysis.

    I have created a empty example to compare both paths, I couldn't found projectspec even on example project, can you tell me where's file located ? 

    with manually added driverlib.lib into project, the linked resources now with driverlib included

    after driverlib.lib library, most of the symbols were defined, just leave both 

    Device_init and  __error__ issues 

    Danny

  • Hi Danny,

    Device_init  and _error_ funcitosns are part of device.c/.h file.

    Device.c file  - C2000Ware_5_02_00_00\device_support\f28002x\common\source\device.c

    device.h - C2000Ware_5_02_00_00\device_support\f28002x\common\include\device.h

    Please include these two files also in the project if you are calling the device_init and _error_ function in the example.

    Thanks

    Aswin

  • Hi Aswin,

    thanks for you help, if you see my first post's first pic above, I already included both files, so please advise !

  • Hi Danny,

    Can you manually add those files in the project and try to build again.

    Right click on project -> add files ->select the files(device.c and .h) -> link to files.

    Please try this method and see if the error is still persisting.

    Thanks

    Aswin

  • Hi Aswin,

    yes, it's working !!!!!

    Danny