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.

RTOS/TM4C129ENCPDT: tcpEcho example on a EK TM4C1294XL

Part Number: TM4C129ENCPDT
Other Parts Discussed in Thread: CC2650

Tool/software: TI-RTOS

Dear support,

I am evaluating TI RTOS NDK on a EK TM4C1294XL. Running tcpEcho (MCU side) and using  tirtos_c2000_2_00_01_23\packages\examples\tools  tcpSendReceive  application to check TCP connection from  windows PC. 

MCU:
Set IP address 192.1683.4.25
IPMask = 255.255.255.0
Gateway IP Adress = 192.168.4.1

On PC :
IP Adress :192.168.4.1
SubnetMask = 255.255.255.0

Ping from PC ping 192.168.4.25   work properly

But  command  'tcpSendReceive 192.168.4.25 1000 1 '  get error 256

Starting test with a 1000 uSec delay between transmits
[id 1] stopping test. recv returned 256

Could you pls help with it?

If I define TaskHandler from tcpEcho.cfg and remove tcpEchoHooks.c from applicastion

var task0Params = new Task.Params();
task0Params.instance.name = "TCPHandlerTask";
task0Params.arg0 = 1000;
Program.global.TCPHandlerTask = Task.create("&tcpHandler", task0Params);

Ping still work, but  ''tcpSendReceive 192.168.4.25 1000 1 '  doesn't work at all :
I get   'connect failed: 0 ;

What is the problem here?

Thanks, Sabina

  • Hi Sabina,

    Please get WireShark and see with is happening? You should be able to see what packets are going back and forth to help narrow down the issue.

    Todd
  • Hi Todd,

    In the case when I get with original TI tcpEcho example seems that PC doesn't receive data: DSP receive/send 256 packet size and PC  send Len=0 always.

    In the case when I put  TCPHandlerTask in cfg file, socket not created

    server = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);

    if (server == -1) {

    System_printf("Error: socket not created.\n");

    goto shutdown;

    }

    I am not sure if it is related to the problem, but in ROV I can not see Ndk status:

  • Sabina,

    For the out of the box, can you attach the entire session? You can save the WireShark data into a file and attach that file. I can then open the WireShark file here. Make sure you get the entire session. So it must include the initial socket creation handshake.

    Make sure there are no breakpoints on the TM4C device and that the example is unmodified.

    Todd
  • Hi Tod,

     attached is one good file.

    After reload the project from internet it work!

    /cfs-file/__key/communityserver-components-multipleuploadfilemanager/2a4cfd69_2D00_1baa_2D00_405f_2D00_9141_2D00_57d2811c5ab0-101872-complete/EchoTestGoodCommunication.zip

    Still exist problem if i put  tcpHandler in cfg file (eliminate  tcpEchoHooks.c)

    ...
    //Global.networkOpenHook = "&netOpenHook";
    ...
    Ip.address = "192.168.4.25";
    Ip.mask = "255.255.255.0";
    Ip.gatewayIpAddr = "192.168.4.1";
    var task0Params = new Task.Params();
    task0Params.instance.name = "TCPHandlerTask";
    task0Params.arg0 = 1000;
    Program.global.TCPHandlerTask = Task.create("&tcpHandler", task0Params);


    /cfs-file/__key/communityserver-components-multipleuploadfilemanager/2a4cfd69_2D00_1baa_2D00_405f_2D00_9141_2D00_57d2811c5ab0-101872-complete/EchoTestBadCommunication.zip

    Thanks,Sabina

  • Sabina,

    I expect the task is trying to create the socket before the networking stack has started in the latter case. The netOpenHook is called when the stack has been initialized. You can still create the task statically in the .cfg file, but you should have the netOpenHook post a semaphore that the TCPHandlerTask is waiting on before trying to create the socket.

    Todd
  • Hi Tod,

    Thanks for response.

    Unfortunately i can not check it, as result of some problems with CCS 7.2 . Suddenly i  can not compile any project from examples. always get:

    configuring tcpEcho.xem4f from package/cfg/tcpEcho_pem4f.cfg ...

    subdir_rules.mk:26: recipe for target 'build-423226943-inproc' failed

    js: "./package/cfg/tcpEcho_pem4f.cfg", line 178: xdc.services.global.XDCException: xdc.PACKAGE_NOT_FOUND: can't locate the package 'configPkg' along the path: 'D:/ti/tirtos_tivac_2_16_00_08/packages;D:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;D:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;D:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;D:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;D:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;D:/ti/ccsv7/ccs_base;D:/ti/xdctools_3_32_02_25_core/packages;'. Ensure that the package path is set correctly.

    xdctools_3_32_02_25_core\gmake.exe: *** [package/cfg/tcpEcho_pem4f.xdl] Error 1

    js: "D:/ti/xdctools_3_32_02_25_core/packages/xdc/tools/Cmdr.xs", line 52: Error: xdc.tools.configuro: configuration failed due to earlier errors (status = 2); 'linker.cmd' deleted.

    gmake[1]: *** [build-423226943-inproc] Error 1

    gmake: *** [build-423226943] Error 2

    gmake[1]: Leaving directory 'C:/Users/Admin1/workspace_v7_new/tcpEcho_EK_TM4C129EXL_TI/Debug'

    subdir_rules.mk:23: recipe for target 'build-423226943' failed

    gmake: Target 'all' not remade because of errors.

    what could be a problem here? I installed CCS 7.3 - but get the same problem there too.

  • Sabina,

    I expect you changed a project setting. Can you please attach the complete build output. Please don't copy/paste into the thread. Place the output in a text and attach that file.

    Please do a "clean" of the project and delete the generated src and debug directories before rebuilding.

    Todd
  • Hi Todd,

    Attached is bad build result of another example UDIEcho after i installed CCS 7.3

    /cfs-file/__key/communityserver-discussions-components-files/908/BamBuildudpEcho.txt

    Thanks,Sabina

  • Sabina,
    I have imported your project and tried to replicate the problem, but it builds fine for me. Can you try cleaning the project and then rebuilding?
    If it's still failing, go to Project Properties->CCS Build->Environment, and add two new environment variables:
    XDC_TRACE_ENABLE set to "all" and
    XDC_TRACE_LEVEL set to 2.
    That's going to generate a verbose output. Please attach that output as a text file.
  • Sabina,
    the output seems normal until the error message, so I still can't tell what the problem could be. Also, you posted the output for two different examples for two different CCS version and the error is the same, which makes me think that there is either something wrong with the XDCtools installation or there are some settings on your PC that are in conflict with the XDCtools build.
    Have you ever built a TI-RTOS example successfully on that PC with XDCtools 3.32.02.25? If yes, do you remember any significant change on your PC in the mean time?
    We could try to debug further, but you would have to change some files in your XDCtools installation and then rebuild and attach new output. There is a file xdc.tci in packages/xdc in your XDCtools installation. There is aline in there that starts with
    var cname = utils.findFile(...
    Could you please find that line and just above it insert the following lines:
    print("current path: " + xdc.curPath());
    print("current dir: " + utils.cwd);
  • Pls see attached

    /cfs-file/__key/communityserver-discussions-components-files/908/BadBuildTcpEchoOutput_5F00_ccs7_5F00_2_5F00_new.txt

    I don't remember that that something special, so i would like to understand it. If you see that you can not find the problem I will to reinstall SW (XDCtools?)

    Thanks,Sabina

  • I can see that a path component is missing from your path. I haven't seen that problem before, and since I can't replicate the problem I think it will take some time for me to debug it. Can you still tell me if all of your TI-RTOS projects are failing in the same way, or only some of them? If only some are failing, do you see anything in common for the failing ones?
  • I need little bit more help in debugging. You can remove these print lines from xdc.tci and the environment variables XDC_TRACE_ENABLE and XDC_TRACE_LEVEL. Then add the environment variable XDCOPTIONS and set it to 'v'. Also, can you check if anywhere in your environment for your project, or in your system environment, you define variables XDCPATH, PKGROOT, or PKGTOP? These would interfere with the command lines that XDCtools creates.
    Once you make these changes, can you please clean and rebuild, and post the new output?
  • Hi Sasha,

    I have this problem with all RTOS example projects that i import.

    i have the following path in my environment:

      XDCPATH = <ECLIPSE_DYNAMIC_VARIABLE>

    And do not have PKGROOT, or PKGTOP

    Pls see link after clean and rebuild:

    /cfs-file/__key/communityserver-discussions-components-files/908/BadBuildTcpEchoOutput_5F00_ccd7_5F00_2_5F00_new2.txt

    Thanks for your help, Sabina

  • There must be something in your environment that gmake is picking up. I hope you don't mind making some changes in your XDCtools installation because I can't replicate the problem on my side and have to keep debugging remotely.

    I have attached a zip file with two files - xdc.mak and xdc_rules.mak. They both belong to the directory packages/xdc/bld in your XDCtools installation. Please back up the existing versions of these files and then copy these new versions to that directory. There will be some additional output that should tell me where to look next for the cause of the problem.

    bld.zip

  • Sabina,
    what's in your PATH? Do you have any software that has a cygwin shell? Try taking components out of your PATH and then building and rebuilding, and see if that changes anything.

    From your output it seems that the command
    D:/ti/xdctools_3_32_02_25_core/bin/xdcdir -t .
    that should be executed in configPkg and return ".." is silently failing. I don't know why but an existing cygwin shell that takes precedence over the XDCtools shell could be the cause.

    Can you also add these two lines to xdc_rules.mak right above the line that sets PKGROOT:= $(shell $(PKGTOP) .)

    $(warning PWD $(shell pwd))
    $(warning xdcdir output $(shell $(PKGTOP) .))

  • Hi Sasha,

    I reinstalled tirtos_tivac_2_16_00_08 and xdctools_3_32_02_25_core but it didn't help. It seems that i have to reinstall ccs .....  Tried to build project with another xdctools_3_50_02_20_core and get the same bad result.

    pls see link

    /cfs-file/__key/communityserver-discussions-components-files/908/BadBuildTcpEchoOutput_5F00_ccs_5F00_7_5F00_2_5F00_new4.txt

     my path link:

    /cfs-file/__key/communityserver-discussions-components-files/908/Path.txt

    Thanks for your help,Sabina

  • Sabina,
    the command I wanted you to run is:
    D:/ti/xdctools_3_32_02_25_core/bin/xdcdir -t .
    and it should be run in configPkg directory of your project.
    Your path contains many components that I am not familiar with, but it's possible that some of them are based on Cygwin. Try using an empty path first, and definitely remove any XDCtools installations from PATH.
  • i get it:

    C:\Users\Admin1\workspace_v7_new\tcpEcho_EK_TM4C129EXL_TI\Debug\configPkg>D:/ti/xdctools_3_32_02_25_core/bin/xdcdir -t
    D:/ti/xdctools_3_32_02_25_core/bin/xdcdir: [-t] dir ...

    I am try try to remove path...

    Thanks,

  • get the same problem with empty path .

    I closed CCS, set empty path, open CCS again, clean&build project

    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.

    C:\Users\sabina.greenberg>path
    PATH=c:

    C:\Users\sabina.greenberg>

    /cfs-file/__key/communityserver-discussions-components-files/908/BadBuildWithEmptyPath.txt

  • The shell command
    $(shell $(PKGTOP) .)
    is supposed to return '..' but it returns an empty string and I don't remember ever seeing that problem. We can try one more thing just to verify that you are really using the XDCtools shell. Add the following right where you have these other output commands in xdc_rules.mak:
    $(warning $(SHELL))

    If that doesn't report anything suspicious, I really don't have that many other ideas. The next step would be to create a verbose output from gmake and look into that.
  • Hi Sasha,

    Thank a lot for your help. It was permission problem  after antivirus update. now all is ok.

    Thanks you very much, Sabina

  • TIME=02:20:58.830 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.830 PM -- xdc: calling ti.sysbios.knl.Queue.instance$static$init for instance $objects (xdccore, all)
    TIME=02:20:58.830 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.830 PM -- xdc: calling ti.sysbios.knl.Queue.instance$static$init for instance $objects (xdccore, all)
    TIME=02:20:58.830 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.830 PM -- xdc: calling ti.sysbios.knl.Queue.instance$static$init for instance $objects (xdccore, all)
    TIME=02:20:58.831 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.831 PM -- xdc: calling ti.sysbios.knl.Queue.instance$static$init for instance $objects (xdccore, all)
    TIME=02:20:58.831 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.831 PM -- xdc: calling ti.sysbios.knl.Queue.instance$static$init for instance $objects (xdccore, all)
    TIME=02:20:58.831 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.831 PM -- xdc: calling ti.sysbios.knl.Swi.instance$static$init for instance $instances (xdccore, all)
    TIME=02:20:58.831 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.832 PM -- xdc: calling ti.sysbios.knl.Task.instance$static$init for instance $instances (xdccore, all)
    TIME=02:20:58.832 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.832 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.cfg (no dependency) (packageLoad, all)
    TIME=02:20:58.832 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.cfg (no dependency) (packageLoad, all)
    TIME=02:20:58.832 PM -- xdc: calling ti.sysbios.knl.Clock_TimerProxy.instance$static$init for instance $instances (xdccore, all)
    TIME=02:20:58.833 PM -- xdc: calling ti.sysbios.BIOS_RtsGateProxy.instance$static$init for instance $instances (xdccore, all)
    TIME=02:20:58.833 PM -- xdc: calling ti.sysbios.family.arm.cc26xx.Timer.instance$static$init for instance $instances (xdccore, all)
    TIME=02:20:58.833 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.833 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.841 PM -- xdc: calling ti.sysbios.gates.GateHwi.instance$static$init for instance $instances (xdccore, all)
    TIME=02:20:58.841 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.841 PM -- xdc: calling ti.sysbios.gates.GateMutex.instance$static$init for instance $instances (xdccore, all)
    TIME=02:20:58.842 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.842 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.842 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.842 PM -- xdc: calling ti.sysbios.gates.GateMutex.instance$static$init for instance $instances (xdccore, all)
    TIME=02:20:58.842 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.843 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.843 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.843 PM -- xdc: calling ti.sysbios.heaps.HeapMem.instance$static$init for instance $instances (xdccore, all)
    TIME=02:20:58.843 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.843 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.cfg (no dependency) (packageLoad, all)
    TIME=02:20:58.844 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.cfg (no dependency) (packageLoad, all)
    TIME=02:20:58.844 PM -- xdc: validation phase: $$phase -> 6 (xdccore, bench, all)
    TIME=02:20:58.844 PM -- xdc: validating ti.drivers.rf (xdccore, all)
    TIME=02:20:58.844 PM -- xdc: validating ti.drivers.pdm (xdccore, all)
    TIME=02:20:58.844 PM -- xdc: validating ti.sysbios.heaps (xdccore, all)
    TIME=02:20:58.844 PM -- xdc: validating ti.sysbios.xdcruntime (xdccore, all)
    TIME=02:20:58.844 PM -- xdc: validating ti.sysbios.gates (xdccore, all)
    TIME=02:20:58.844 PM -- xdc: validating xdc.runtime.knl (xdccore, all)
    TIME=02:20:58.844 PM -- xdc: validating ti.sysbios.rts (xdccore, all)
    TIME=02:20:58.845 PM -- xdc: validating ti.mw.display (xdccore, all)
    TIME=02:20:58.845 PM -- xdc: validating ti.mw.lcd (xdccore, all)
    TIME=02:20:58.845 PM -- xdc: validating ti.mw.grlib (xdccore, all)
    TIME=02:20:58.845 PM -- xdc: validating ti.mw (xdccore, all)
    TIME=02:20:58.845 PM -- xdc: validating ti.drivers (xdccore, all)
    TIME=02:20:58.845 PM -- xdc: loadPackage: xdc.cfg shell --> ti.drivers (no dependency) (packageLoad, all)
    TIME=02:20:58.845 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:58.845 PM -- xdc: validating ti.mw.fatfs (xdccore, all)
    TIME=02:20:58.845 PM -- xdc: validating ti.drivers.ports (xdccore, all)
    TIME=02:20:58.845 PM -- xdc: validating ti.sysbios.rom.cortexm.cc26xx (xdccore, all)
    TIME=02:20:58.846 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.family (no dependency) (packageLoad, all)
    TIME=02:20:58.846 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.knl (no dependency) (packageLoad, all)
    TIME=02:20:58.846 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.knl (no dependency) (packageLoad, all)
    TIME=02:20:58.846 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.hal (no dependency) (packageLoad, all)
    TIME=02:20:58.846 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.family.arm.m3 (no dependency) (packageLoad, all)
    TIME=02:20:58.846 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.knl (no dependency) (packageLoad, all)
    TIME=02:20:58.846 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.knl (no dependency) (packageLoad, all)
    TIME=02:20:58.846 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.heaps (no dependency) (packageLoad, all)
    TIME=02:20:58.847 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:58.847 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.family.arm.m3 (no dependency) (packageLoad, all)
    TIME=02:20:58.847 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.857 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.857 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.858 PM -- xdc: validating ti.sysbios.rom (xdccore, all)
    TIME=02:20:58.858 PM -- xdc: validating ti.sysbios.hal (xdccore, all)
    TIME=02:20:58.858 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.family (no dependency) (packageLoad, all)
    TIME=02:20:58.858 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:58.858 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.family.arm.m3 (no dependency) (packageLoad, all)
    TIME=02:20:58.858 PM -- xdc: validating ti.sysbios.family.arm.cc26xx (xdccore, all)
    TIME=02:20:58.858 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:58.859 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.knl (no dependency) (packageLoad, all)
    TIME=02:20:58.859 PM -- xdc: validating ti.sysbios.family.arm.m3 (xdccore, all)
    TIME=02:20:58.859 PM -- xdc: validating ti.sysbios (xdccore, all)
    TIME=02:20:58.859 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.family (no dependency) (packageLoad, all)
    TIME=02:20:58.859 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:58.859 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.family.arm.m3 (no dependency) (packageLoad, all)
    TIME=02:20:58.859 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.knl (no dependency) (packageLoad, all)
    TIME=02:20:58.860 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.knl (no dependency) (packageLoad, all)
    TIME=02:20:58.860 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.utils (no dependency) (packageLoad, all)
    TIME=02:20:58.861 PM -- xdc: loadPackage: ti.sysbios.utils loaded from C:/ti/tirtos_cc13xx_cc26xx_2_21_00_06/products/bios_6_46_01_37/packages/ (packageLoad, all)
    TIME=02:20:58.863 PM -- xdc: loadPackage: ti.sysbios.utils --> xdc (packageLoad, all)
    TIME=02:20:58.863 PM -- xdc: loadPackage: ti.sysbios.utils --> xdc.corevers (packageLoad, all)
    TIME=02:20:58.863 PM -- xdc: loadPackage: ti.sysbios.utils --> xdc.rov (packageLoad, all)
    TIME=02:20:58.863 PM -- xdc: loadPackage: ti.sysbios.utils --> ti.sysbios.knl (packageLoad, all)
    TIME=02:20:58.863 PM -- xdc: loadPackage: ti.sysbios.utils --> ti.sysbios.interfaces (packageLoad, all)
    TIME=02:20:58.863 PM -- xdc: loadPackage: ti.sysbios.utils --> xdc.runtime (packageLoad, all)
    TIME=02:20:58.870 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.870 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.870 PM -- xdc: validating xdc.services.getset (xdccore, all)
    TIME=02:20:58.870 PM -- xdc: validating ti.sysbios.knl (xdccore, all)
    TIME=02:20:58.870 PM -- xdc: validating ti.sysbios.family (xdccore, all)
    TIME=02:20:58.870 PM -- xdc: validating ti.sysbios.family.arm (xdccore, all)
    TIME=02:20:58.870 PM -- xdc: validating ti.sysbios.interfaces (xdccore, all)
    TIME=02:20:58.870 PM -- xdc: validating configPkg (xdccore, all)
    TIME=02:20:58.870 PM -- xdc: validating ti.targets.arm.rtsarm (xdccore, all)
    TIME=02:20:58.871 PM -- xdc: validating xdc.runtime (xdccore, all)
    TIME=02:20:58.871 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.872 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.873 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.874 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.874 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.874 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:58.874 PM -- xdc: validating xdc.rov (xdccore, all)
    TIME=02:20:58.874 PM -- xdc: validating ti.catalog.arm.cortexm3 (xdccore, all)
    TIME=02:20:58.874 PM -- xdc: validating ti.catalog.arm.peripherals.timers (xdccore, all)
    TIME=02:20:58.879 PM -- xdc: validating ti.platforms.simplelink (xdccore, all)
    TIME=02:20:58.879 PM -- xdc: validating ti.catalog.arm.cortexm4 (xdccore, all)
    TIME=02:20:58.879 PM -- xdc: validating ti.catalog.peripherals.hdvicp2 (xdccore, all)
    TIME=02:20:58.879 PM -- xdc: validating ti.catalog (xdccore, all)
    TIME=02:20:58.879 PM -- xdc: validating ti.targets.arm.elf (xdccore, all)
    TIME=02:20:58.879 PM -- xdc: validating ti.targets (xdccore, all)
    TIME=02:20:58.880 PM -- xdc: validating xdc.bld (xdccore, all)
    TIME=02:20:58.880 PM -- xdc: validating xdc.services.intern.cmd (xdccore, all)
    TIME=02:20:58.880 PM -- xdc: validating xdc.services.intern.gen (xdccore, all)
    TIME=02:20:58.880 PM -- xdc: validating xdc.services.intern.xsr (xdccore, all)
    TIME=02:20:58.880 PM -- xdc: validating xdc.services.spec (xdccore, all)
    TIME=02:20:58.880 PM -- xdc: validating xdc.shelf (xdccore, all)
    TIME=02:20:58.880 PM -- xdc: validating xdc.cfg (xdccore, all)
    TIME=02:20:58.880 PM -- xdc: validating xdc.platform (xdccore, all)
    TIME=02:20:58.881 PM -- xdc: validating xdc.services.global (xdccore, all)
    TIME=02:20:58.881 PM -- xdc: validating xdc.corevers (xdccore, all)
    TIME=02:20:58.881 PM -- xdc: validating xdc (xdccore, all)
    TIME=02:20:58.881 PM -- xdc: validation phase done (bench, all)
    TIME=02:20:58.881 PM -- xdc: C config file generation: $$phase -> 7 (xdccore, bench, all)
    TIME=02:20:58.881 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.bld (no dependency) (packageLoad, all)
    TIME=02:20:59.531 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.532 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.532 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.532 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.532 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.532 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.532 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.532 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.532 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.533 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.533 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.533 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.533 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.533 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.533 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.533 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.533 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.533 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.533 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.534 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.534 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.538 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.539 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.571 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.586 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.589 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.590 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.knl (no dependency) (packageLoad, all)
    TIME=02:20:59.593 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.593 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.hal (no dependency) (packageLoad, all)
    TIME=02:20:59.593 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.knl (no dependency) (packageLoad, all)
    TIME=02:20:59.599 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.602 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.602 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.607 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.family.arm.m3 (no dependency) (packageLoad, all)
    TIME=02:20:59.611 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.family.arm.cc26xx (no dependency) (packageLoad, all)
    TIME=02:20:59.616 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.616 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.616 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.rom (no dependency) (packageLoad, all)
    TIME=02:20:59.623 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.623 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    generating custom ROM library makefile ... 
    TIME=02:20:59.626 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.627 PM -- xdc: loadPackage: xdc.services.io loaded from C:/ti/xdctools_3_32_00_06_core/packages/ (packageLoad, all)
    TIME=02:20:59.629 PM -- xdc: loadPackage: xdc.services.io --> xdc (packageLoad, all)
    TIME=02:20:59.629 PM -- xdc: loadPackage: xdc.services.io --> xdc.corevers (packageLoad, all)
    TIME=02:20:59.634 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.635 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.635 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.rom (no dependency) (packageLoad, all)
    TIME=02:20:59.641 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.641 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.641 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.hal (no dependency) (packageLoad, all)
    TIME=02:20:59.641 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.family (no dependency) (packageLoad, all)
    TIME=02:20:59.642 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.642 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.knl (no dependency) (packageLoad, all)
    TIME=02:20:59.642 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.knl (no dependency) (packageLoad, all)
    TIME=02:20:59.642 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.knl (no dependency) (packageLoad, all)
    TIME=02:20:59.642 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.knl (no dependency) (packageLoad, all)
    TIME=02:20:59.642 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.utils (no dependency) (packageLoad, all)
    TIME=02:20:59.642 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.642 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.643 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.family.arm.m3 (no dependency) (packageLoad, all)
    TIME=02:20:59.643 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.hal (no dependency) (packageLoad, all)
    TIME=02:20:59.643 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.643 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.hal (no dependency) (packageLoad, all)
    TIME=02:20:59.643 PM -- xdc: loadPackage: xdc.cfg shell --> ti.targets (packageLoad, all)
    TIME=02:20:59.645 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.645 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.645 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.645 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.646 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.646 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.646 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.646 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.646 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.647 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.647 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.647 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.647 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.647 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.647 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.648 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.648 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.648 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.648 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.648 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.649 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.649 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.650 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.655 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.655 PM -- xdc: loadPackage: xdc.cfg shell --> xdc (packageLoad, all)
    TIME=02:20:59.656 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.656 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.656 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.656 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.656 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.656 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.656 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.657 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.657 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.657 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.657 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.657 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.657 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.657 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.657 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.658 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.658 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.658 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.658 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.658 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.658 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.658 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.658 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.658 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.659 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.659 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.659 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.659 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.659 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.659 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.659 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.659 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.659 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.660 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.660 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.660 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.660 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.664 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.664 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.664 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.664 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.664 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.664 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.664 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.664 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.665 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.665 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.665 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.665 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.665 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.665 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.665 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.665 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.665 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.665 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.665 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.666 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.666 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.666 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.666 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.666 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.666 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.666 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.666 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.666 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.666 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.666 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.666 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.667 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.667 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.667 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.667 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.667 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.667 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.667 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.667 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.681 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.682 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.682 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.682 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.682 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.682 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.682 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.682 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.683 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.683 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.683 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.683 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.683 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.683 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.684 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.684 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.684 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.684 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.684 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.684 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.684 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.684 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.685 PM -- xdc: loadPackage: xdc.cfg shell --> ti.targets.arm.rtsarm (packageLoad, all)
    TIME=02:20:59.685 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.io (no dependency) (packageLoad, all)
    TIME=02:20:59.685 PM -- xdc: loadPackage: xdc.cfg shell --> xdc (packageLoad, all)
    TIME=02:20:59.686 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.686 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.686 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.686 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.687 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.687 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.688 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.688 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.688 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.688 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.688 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.689 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.689 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.689 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.697 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.698 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.698 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.698 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.698 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.698 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.699 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.699 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.699 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.699 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.700 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.700 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.700 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.700 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.700 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.701 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.701 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.701 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.701 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.701 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.702 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.702 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.702 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.702 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.702 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.703 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.703 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.703 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.703 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.703 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.703 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.704 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.704 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.704 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.704 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.704 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.705 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.705 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.705 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.720 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.720 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.720 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.720 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.720 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.720 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.720 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.720 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.720 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.720 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.721 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.721 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.721 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.721 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.721 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.721 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.722 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.722 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.722 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.722 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.722 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.722 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.722 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.722 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.723 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.723 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.723 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.723 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.723 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.723 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.723 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.724 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.724 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.724 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.724 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.724 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.724 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.724 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.724 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.743 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.743 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.743 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.744 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.744 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.744 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.744 PM -- xdc: loadPackage: xdc.cfg shell --> ti.targets.arm.rtsarm (packageLoad, all)
    TIME=02:20:59.746 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.rom.cortexm.cc26xx (no dependency) (packageLoad, all)
    TIME=02:20:59.753 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.753 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.rts (no dependency) (packageLoad, all)
    TIME=02:20:59.753 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:20:59.860 PM -- xdc: getLibs: package 'configPkg' supplying library 'C:\Users\admin\workspace_v7\adcsinglechannel_CC2650_LAUNCHXL_TI_CC2650F128\Debug\configPkg\package\cfg\adcsinglechannel_pem3.oem3'. (getLibs, all)
    TIME=02:20:59.860 PM -- xdc: loadPackage: xdc.cfg shell --> ti.mw (packageLoad, all)
    TIME=02:20:59.860 PM -- xdc: getLibs: package 'ti.mw.display' supplying library 'C:/ti/tirtos_cc13xx_cc26xx_2_21_00_06/products/tidrivers_cc13xx_cc26xx_2_21_00_04/packages/ti/mw/display/lib/display.aem3'. (getLibs, all)
    TIME=02:20:59.860 PM -- xdc: loadPackage: xdc.cfg shell --> ti.mw (packageLoad, all)
    TIME=02:20:59.862 PM -- xdc: getLibs: package 'ti.mw.lcd' supplying library 'C:/ti/tirtos_cc13xx_cc26xx_2_21_00_06/products/tidrivers_cc13xx_cc26xx_2_21_00_04/packages/ti/mw/lcd/lib/lcd.aem3'. (getLibs, all)
    TIME=02:20:59.862 PM -- xdc: loadPackage: xdc.cfg shell --> ti.mw (packageLoad, all)
    TIME=02:20:59.862 PM -- xdc: getLibs: package 'ti.mw.grlib' supplying library 'C:/ti/tirtos_cc13xx_cc26xx_2_21_00_06/products/tidrivers_cc13xx_cc26xx_2_21_00_04/packages/ti/mw/grlib/lib/grlib.aem3'. (getLibs, all)
    TIME=02:20:59.862 PM -- xdc: loadPackage: xdc.cfg shell --> ti.drivers (no dependency) (packageLoad, all)
    TIME=02:20:59.862 PM -- xdc: loadPackage: xdc.cfg shell --> ti.drivers.rf (packageLoad, all)
    TIME=02:20:59.862 PM -- xdc: getLibs: package 'ti.drivers.rf' supplying library 'C:/ti/tirtos_cc13xx_cc26xx_2_21_00_06/products/tidrivers_cc13xx_cc26xx_2_21_00_04/packages/ti/drivers/rf/lib/rf_singleMode_cc26xxware.aem3'. (getLibs, all)
    TIME=02:20:59.862 PM -- xdc: loadPackage: xdc.cfg shell --> ti.drivers (no dependency) (packageLoad, all)
    TIME=02:20:59.863 PM -- xdc: loadPackage: xdc.cfg shell --> ti.drivers (packageLoad, all)
    TIME=02:20:59.863 PM -- xdc: getLibs: package 'ti.drivers' supplying library 'C:/ti/tirtos_cc13xx_cc26xx_2_21_00_06/products/tidrivers_cc13xx_cc26xx_2_21_00_04/packages/ti/drivers/lib/drivers_cc26xxware.aem3'. (getLibs, all)
    TIME=02:20:59.863 PM -- xdc: getLibs: package 'ti.drivers' supplying library 'C:/ti/tirtos_cc13xx_cc26xx_2_21_00_06/products/tidrivers_cc13xx_cc26xx_2_21_00_04/packages/ti/drivers/lib/power_cc26xx_tirtos.aem3'. (getLibs, all)
    TIME=02:20:59.863 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.863 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.863 PM -- xdc: loadPackage: xdc.cfg shell --> ti.drivers.pdm (packageLoad, all)
    TIME=02:20:59.864 PM -- xdc: getLibs: package 'ti.drivers.pdm' supplying library 'C:/ti/tirtos_cc13xx_cc26xx_2_21_00_06/products/tidrivers_cc13xx_cc26xx_2_21_00_04/packages/ti/drivers/pdm/lib/pdm_cc26xxware.aem3'. (getLibs, all)
    TIME=02:20:59.864 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.864 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.864 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.864 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.864 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.865 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.866 PM -- xdc: getLibs: package 'ti.mw.fatfs' supplying library 'C:\ti\tirtos_cc13xx_cc26xx_2_21_00_06\products\tidrivers_cc13xx_cc26xx_2_21_00_04\packages\ti\mw\fatfs\lib\release\ti.mw.fatfs.aem3'. (getLibs, all)
    TIME=02:20:59.866 PM -- xdc: loadPackage: xdc.cfg shell --> ti.drivers.ports (packageLoad, all)
    TIME=02:20:59.866 PM -- xdc: getLibs: package 'ti.drivers.ports' supplying library 'C:/ti/tirtos_cc13xx_cc26xx_2_21_00_06/products/tidrivers_cc13xx_cc26xx_2_21_00_04/packages/ti/drivers/ports/lib/tirtosport.aem3'. (getLibs, all)
    TIME=02:20:59.867 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.867 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.868 PM -- xdc: getLibs: package 'ti.sysbios' supplying library 'C:\Users\admin\workspace_v7\adcsinglechannel_CC2650_LAUNCHXL_TI_CC2650F128\src\sysbios\rom_sysbios.aem3'. (getLibs, all)
    TIME=02:20:59.868 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.868 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.868 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.868 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.868 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.868 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.869 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.869 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.869 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.869 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios (no dependency) (packageLoad, all)
    TIME=02:20:59.870 PM -- xdc: getLibs: package 'ti.targets.arm.rtsarm' supplying library 'C:\ti\tirtos_cc13xx_cc26xx_2_21_00_06\products\bios_6_46_01_37\packages\ti\targets\arm\rtsarm\lib\boot.aem3'. (getLibs, all)
    TIME=02:20:59.871 PM -- xdc: getLibs: package 'ti.targets.arm.rtsarm' supplying library 'C:\ti\tirtos_cc13xx_cc26xx_2_21_00_06\products\bios_6_46_01_37\packages\ti\targets\arm\rtsarm\lib\auto_init.aem3'. (getLibs, all)
    TIME=02:20:59.894 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.family.arm (no dependency) (packageLoad, all)
    TIME=02:20:59.903 PM -- xdc: loadPackage: xdc.cfg shell --> ti.sysbios.family.arm.m3 (no dependency) (packageLoad, all)
    TIME=02:21:00.492 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:21:00.494 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.runtime (no dependency) (packageLoad, all)
    TIME=02:21:00.523 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.cfg (no dependency) (packageLoad, all)
    Starting build of library sources ...
    TIME=02:21:00.524 PM -- xdc: loadPackage: xdc.cfg shell --> xdc.services.global (packageLoad, all)
    making C:/Users/admin/workspace_v7/adcsinglechannel_CC2650_LAUNCHXL_TI_CC2650F128/src/sysbios/rom_sysbios.aem3 ...
    gmake[1]: Entering directory `C:/Users/admin/workspace_v7/adcsinglechannel_CC2650_LAUNCHXL_TI_CC2650F128/src/sysbios'
    clem3 C:/ti/tirtos_cc13xx_cc26xx_2_21_00_06/products/bios_6_46_01_37/packages/ti/sysbios/BIOS.c ...
    gmake[1]: Leaving directory `C:/Users/admin/workspace_v7/adcsinglechannel_CC2650_LAUNCHXL_TI_CC2650F128/src/sysbios'
    Build of libraries failed.
    subdir_rules.mk:26: recipe for target 'build-501687041-inproc' failed
          0 [main] sh 3932 sync_with_child: child 868(0x1FC) died before initialization with status code 0xC0000142
         11 [main] sh 3932 sync_with_child: *** child state waiting for longjmp
    C:/Users/admin/AppData/Local/Temp/make104-1.sh: fork: Resource temporarily unavailable
    gmake[1]: *** [rom_sysbios.obj] Error 128
    gmake: *** [C:/Users/admin/workspace_v7/adcsinglechannel_CC2650_LAUNCHXL_TI_CC2650F128/src/sysbios/rom_sysbios.aem3] Error 2
    error: xdc.cfg.SourceDir: "C:/ti/xdctools_3_32_00_06_core/packages/xdc/cfg/SourceDir.xs", line 209: xdc.cfg.SourceDir : Build of generated source libraries failed: exit status = 2:
    
    js: "C:/ti/xdctools_3_32_00_06_core/packages/xdc/cfg/Main.xs", line 160: Error: Configuration failed!
    gmake.exe: *** [package/cfg/adcsinglechannel_pem3.xdl] Error 1
    gmake.exe: *** Deleting file `package/cfg/adcsinglechannel_pem3.xdl'
    gmake.exe: *** [package/cfg/adcsinglechannel_pem3.xdl] Deleting file `package/cfg/adcsinglechannel_pem3.h'
    gmake.exe: *** [package/cfg/adcsinglechannel_pem3.xdl] Deleting file `package/cfg/adcsinglechannel_pem3.c'
    js: "C:/ti/xdctools_3_32_00_06_core/packages/xdc/tools/Cmdr.xs", line 51: Error: xdc.tools.configuro: configuration failed due to earlier errors (status = 2); 'linker.cmd' deleted.
    gmake[1]: *** [build-501687041-inproc] Error 1
    gmake[1]: Leaving directory 'C:/Users/admin/workspace_v7/adcsinglechannel_CC2650_LAUNCHXL_TI_CC2650F128/Debug'
    gmake: *** No rule to make target 'build-501687041', needed by 'configPkg/compiler.opt'.
    gmake: *** No rule to make target 'build-501687041', needed by 'configPkg/compiler.opt'.
    gmake: *** No rule to make target 'build-501687041', needed by 'configPkg/compiler.opt'.
    gmake: Target 'all' not remade because of errors.
    
    **** Build Finished ****
    

    Just wanted to report another solution which worked for me, for the same problem.

    All the projects compiled smoothly before installing avrdude (which i was using for another project), just uninstalling avrdude and restarting PC resolved the issue.

    CCS version:- 7.3.0.00019

    board:- CC2650

    Code:- example codes from Ti resource explorer classic.