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.

BOOSTXL-CC3135: TM4C1294

Part Number: BOOSTXL-CC3135
Other Parts Discussed in Thread: CC3220S, CC3235SF, CC3100

Hi, I am trying to configure wifi module from TM4C1294NPCT controller 
for that i am working with SDK from which i am getting SimpleLink library
which we need for this project 
but i am keep getting this error from CCS studio named : 
unresolved symbols remain

and the error message is : 

Building target: "WiFi_transmission.out"
Invoking: Arm Linker
"C:/ti/ccs1120/ccs/tools/compiler/ti-cgt-arm_20.2.5.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=vfplib -me --define=cc3220s -g --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi -z -m"WiFi_transmission.map" --heap_size=0x0 --stack_size=0x512 -i"C:/ti/ccs1120/ccs/tools/compiler/ti-cgt-arm_20.2.5.LTS/lib" -i"C:/ti/ccs1120/ccs/tools/compiler/ti-cgt-arm_20.2.5.LTS/include" --reread_libs --diag_wrap=off --display_error_number --warn_sections --xml_link_info="WiFi_transmission_linkInfo.xml" --rom_model -o "WiFi_transmission.out" "./main.obj" "./driverlib/adc.obj" "./driverlib/aes.obj" "./driverlib/can.obj" "./driverlib/comp.obj" "./driverlib/cpu.obj" "./driverlib/crc.obj" "./driverlib/des.obj" "./driverlib/eeprom.obj" "./driverlib/emac.obj" "./driverlib/epi.obj" "./driverlib/epi_workaround_ccs.obj" "./driverlib/flash.obj" "./driverlib/fpu.obj" "./driverlib/gpio.obj" "./driverlib/hibernate.obj" "./driverlib/i2c.obj" "./driverlib/interrupt.obj" "./driverlib/lcd.obj" "./driverlib/mpu.obj" "./driverlib/onewire.obj" "./driverlib/pwm.obj" "./driverlib/qei.obj" "./driverlib/shamd5.obj" "./driverlib/ssi.obj" "./driverlib/sw_crc.obj" "./driverlib/sysctl.obj" "./driverlib/sysexc.obj" "./driverlib/systick.obj" "./driverlib/timer.obj" "./driverlib/uart.obj" "./driverlib/udma.obj" "./driverlib/usb.obj" "./driverlib/watchdog.obj" "../cc3235sf.cmd" -llibc.a
<Linking>
warning #10247-D: creating output section "vtable" without a SECTIONS specification
warning #10443-D: The ".stack" section size is required to be aligned to 8 bytes, but the specified size, 0x512, is not. The aligned size is 0x518

undefined first referenced
symbol in file
--------- ----------------
CPUbasepriGet ./driverlib/interrupt.obj
CPUbasepriSet ./driverlib/interrupt.obj
CPUcpsid ./driverlib/interrupt.obj
CPUcpsie ./driverlib/interrupt.obj
CPUwfi ./driverlib/sysctl.obj
SysCtlDelay ./main.obj

error #10234-D: unresolved symbols remain
error #10010: errors encountered during linking; "wifi_proj.out" not built


plz can someone who has worked on it can reply how to solve this error

  • Hi Kalpesh,

     

    1. Which SDK version did you use?
    2. Which program are you running while getting this error?
    3. Please walk me through how you imported the SDK to CCS.
  • i am using simplelink_sdk_wifi_plugin_4_20_00_10 SDK module,
    installed this SDK directly to the Ti directory with its installer 
    and imported this module by giving path of SimpleLink.h file which is present at  location in TI directory
    i.e. included that path directly in File search path

    and i am trying to connect my local network with wifi module
    i am trying to configure WiFi module from microcontroller with simplelink library provided by SDK

  • Hi,

    Be aware that simplelink_sdk_wifi_plugin_4_20_00_10 does not support TM4C1294 natively. Its support MSP432 but not TM4C1294. That means you will need to port your host driver to your MCU. For more detail about porting host driver see SWRU455 chapter 19. As I remember there were some threads related porting host driver to TM4Cxxxx at this forum.

    TM4C1294 was supported at previous at 1st generation of devices (CC3100). For more details see CC3100 SDK.

    Jan