Hello TI Community:
My code is throwing an error during a call to DNSGetHostByName().
The code was based off of the UDP example provided for the TM4C129X processors.
I was able to get the example running just fine; however, after I added the call to DNSGetHostByName(), I received the following error:
ti.sysbios.family.arm.m3.Hwi: line 1164: E_busFault: PRECISERR: Immediate Bus Fault, exact addr known, address: f0c04288
For all practical purposes, the 'only' addition to the code was the following:
// Delay 15 Seconds
char strBuffer[1024];
memcpy(strBuffer, 0, sizeof(strBuffer));
iRtn = DNSGetHostByName("MyWorkstation", strBuffer, sizeof(strBuffer));
Fails here
During Execution, the Console shows:
Using MAC address in flash
Starting the UDP Echo example
System provider is set to SysMin. Halt the target to view any SysMin contents in ROV.
Service Status: DHCPC : Enabled : : 000
Service Status: DHCPC : Enabled : Running : 000
Network Added: If-1:192.168.1.132
Service Status: DHCPC : Enabled : Running : 017
llEnter()
Failure Messages after this point....
Partial Compiler and Linker Messages
'Invoking: XDCtools'
"C:/ti/xdctools_3_31_01_33_core/xs"
--xdcpath="
C:/ti/tirtos_tivac_2_14_00_10/packages;
C:/ti/tirtos_tivac_2_14_00_10/products/bios_6_42_01_20/packages;
C:/ti/tirtos_tivac_2_14_00_10/products/ndk_2_24_03_35/packages;
C:/ti/tirtos_tivac_2_14_00_10/products/uia_2_00_02_39/packages;
C:/ti/ccsv6/ccs_base;" xdc.tools.configuro
C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.7
C:/ti/tirtos_tivac_2_14_00_10/products/TivaWare_C_Series-2.1.1.71b\"
C:/ti/tirtos_tivac_2_14_00_10/packages/ti/drivers/wifi/cc3100/Simplelink\
C:/ti/tirtos_tivac_2_14_00_10/packages/ti/drivers/wifi/cc3100/Simplelink/Include\
'Building target: TheProject.out'
'Invoking: ARM Linker'
"C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.7/bin/armcl"
-l"configPkg/linker.cmd" -l"libc.a"
-l"C:/ti/tirtos_tivac_2_14_00_10/products/TivaWare_C_Series-2.1.1.71b/grlib/ccs/Debug/grlib.lib"
-l"C:/ti/tirtos_tivac_2_14_00_10/products/TivaWare_C_Series-2.1.1.71b/usblib/ccs/Debug/usblib.lib"
-l"C:/ti/tirtos_tivac_2_14_00_10/products/TivaWare_C_Series-2.1.1.71b/driverlib/ccs/Debug/driverlib.lib"
<Linking>
'Finished building target: TheProject.out'
Stack Size: --stack_size=32767
I am sure that the resolution is pretty simple and is probably related to how the project was setup. I'm just not seeing it. Any thoughts would be most appreciated.
Thank you.
Rick