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.

CODECOMPOSER: Enums no longer recognized by ccs after merge into repo

Part Number: CODECOMPOSER
Other Parts Discussed in Thread: TM4C1233H6PGE, SEGGER, CCSTUDIO, TM4C123GH6PGE, TM4C1231H6PGE

I have been running into an issue that once I merge my code into a git repo then try to create a new branch all of the sudden the Enums are no longer recognized by ccs. The Enums are defined in a text file and are brought into the program via a #include statement. The thing that is strange is that it seems that ccs knows about the enums and the file that they are defined in, but it cant seem to link any use of the enums back to the definition. It had been working fine for days, but once we merged back into the repo I started getting the issue and the only way I could find to resolve it was to delete my metadata. I am guessing that there might be config file that I am not tracking and I was wondering if you might have an idea of where to look?

  • Hello,

    The thing that is strange is that it seems that ccs knows about the enums and the file that they are defined in, but it cant seem to link any use of the enums back to the definition

    Sorry, but I'm a bit foggy on what the exact error is. Are you getting a build error? If so, can you provide the exact error from the build console?

    Thanks

    ki

  • it is the "undefined symbol" error. All of the symbols that this error occurs on our Enums that are defined in a .txt document and brought into our code base via a #include statement. This only seems to happen after we merge code into our repo and then sync to that repo. I needed to continue working on this code base, so I searched for solutions. The only thing I could find is that I should try to delete my metadata. I was able to get the code compiling after that, but we have and this issue multiple times now and it usually takes several hours to resolve. I am hoping that we can get it resolved so that this doesnt happen anymore. If you need a sreenshot of the error I can merge some code to recreate the issue.

  • I'm still uncertain of the correlation with the metadata.

    Any screenshots would be helpful. Also if you can provide the build output of the failed build and working build, that would be great.

  • At this point I have not been able to recreate that exact issue, although it has bitten our team more than once now. We are having another issue now that might be related where eeprom.h has compile issues and wont recognize "uint32_t" or "bool". not sure what is going on here

    #include <stdbool.h>
    #include <stdint.h>

    These are already included in the eeprom.c

    Description Resource Path Location Type
    #20 identifier "bool" is undefined eeprom.h /common_hardware/Library/driverlib line 253 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 228 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 229 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 230 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 231 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 232 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 233 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 234 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 235 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 236 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 237 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 238 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 239 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 240 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 241 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 242 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 243 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 244 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 245 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 246 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 247 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 248 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 249 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 250 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 251 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 252 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 253 C/C++ Problem
    #20 identifier "uint32_t" is undefined eeprom.h /common_hardware/Library/driverlib line 254 C/C++ Problem
    gmake: *** [HAL/TIVA/halTiva_EEProm.obj] Error 1 common_hardware C/C++ Problem
    gmake: *** Waiting for unfinished jobs.... common_hardware C/C++ Problem
    Invalid project path: Missing project folder or file: \common_hardware\Software\Library\ti-cgt-arm_20.2.5.LTS\include\libcxx\include for Source path. common_hardware pathentry Path Entry Problem
    Invalid project path: Missing project folder or file: \common_hardware\Software\Library\ti-cgt-arm_20.2.5.LTS\include\libcxx\support\runtime for Source path. common_hardware pathentry Path Entry Problem

  • Invalid project path: Missing project folder or file: \common_hardware\Software\Library\ti-cgt-arm_20.2.5.LTS\include\libcxx\include for Source path. common_hardware pathentry Path Entry Problem
    Invalid project path: Missing project folder or file: \common_hardware\Software\Library\ti-cgt-arm_20.2.5.LTS\include\libcxx\support\runtime for Source path. common_hardware pathentry Path Entry Problem

    These errors lead me to believe that a linked resource path variable for your project got invalidated. This must have happened during the merge. I'm not sure how this is happening though.

    Please right click on one of these folder in the Project Explorer view and select Properties in the context menu. Then provide a screenshot of the properties dialog. I am interested in the information as shown in the example below:

  • here is what I see.

  • I assume that is for a folder without issue.

    I'm concerned about these paths

    Invalid project path: Missing project folder or file: \common_hardware\Software\Library\ti-cgt-arm_20.2.5.LTS\include\libcxx\include for Source path. common_hardware pathentry Path Entry Problem
    Invalid project path: Missing project folder or file: \common_hardware\Software\Library\ti-cgt-arm_20.2.5.LTS\include\libcxx\support\runtime for Source path. common_hardware pathentry Path Entry Problem

    these are links to the libcxx include folder from the compiler. 

    Did you add the compiler directories to your project?

  • Here are the include options that I have.

  • I was more interested in if you explictly added the compiler directories to the project itself, not the include search paths.

    It may be easier if your share your project with me. For now, I can start with just the three .*project files in the project folder.

    Thanks

    ki

  • Here is a copy of those files. I didnt see a way to just upload the files so I just copied the contents here. Is there a way to upload the file that I am not seeing? 

    .ccsproject

    <?xml version="1.0" encoding="UTF-8" ?>
    <?ccsproject version="1.0"?>
    <projectOptions>
    <ccsVersion value="11.0.0"/>
    <deviceVariant value="Cortex M.TM4C1233H6PGE"/>
    <deviceFamily value="TMS470"/>
    <deviceEndianness value="little"/>
    <codegenToolVersion value="20.2.5.LTS"/>
    <isElfFormat value="true"/>
    <rts value="libc.a"/>
    <createSlaveProjects value=""/>
    <templateProperties value="id=com.ti.common.project.core.emptyProjectWithMainTemplate"/>
    <filesToOpen value="main.c"/>
    <isTargetManual value="false"/>
    <connection value="common/targetdb/connections/segger_j-link_connection.xml"/>
    <sourceLookupPath value="${workspace_loc:/${ProjName}/Software}"/>
    </projectOptions>

    .project

    <?xml version="1.0" encoding="UTF-8"?>
    <projectDescription>
    <name>common_hardware</name>
    <comment></comment>
    <projects>
    </projects>
    <buildSpec>
    <buildCommand>
    <name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
    <arguments>
    </arguments>
    </buildCommand>
    <buildCommand>
    <name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
    <triggers>full,incremental,</triggers>
    <arguments>
    </arguments>
    </buildCommand>
    </buildSpec>
    <natures>
    <nature>org.eclipse.rtsc.xdctools.buildDefinitions.XDC.xdcNature</nature>
    <nature>com.ti.ccstudio.core.ccsNature</nature>
    <nature>org.eclipse.cdt.core.cnature</nature>
    <nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
    <nature>org.eclipse.cdt.core.ccnature</nature>
    <nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
    </natures>
    </projectDescription>

    .cproject

    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <?fileVersion 4.0.0?><cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage">
    <storageModule configRelations="2" moduleId="org.eclipse.cdt.core.settings">
    <cconfiguration id="com.ti.ccstudio.buildDefinitions.TMS470.Debug.29887805">
    <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="com.ti.ccstudio.buildDefinitions.TMS470.Debug.29887805" moduleId="org.eclipse.cdt.core.settings" name="Debug">
    <externalSettings/>
    <extensions>
    <extension id="com.ti.ccstudio.binaryparser.CoffParser" point="org.eclipse.cdt.core.BinaryParser"/>
    <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
    <extension id="com.ti.ccstudio.errorparser.CoffErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
    <extension id="com.ti.ccstudio.errorparser.AsmErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
    <extension id="com.ti.ccstudio.errorparser.LinkErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
    </extensions>
    </storageModule>
    <storageModule moduleId="cdtBuildSystem" version="4.0.0">
    <configuration artifactExtension="out" artifactName="${ProjName}" buildProperties="" cleanCommand="${CG_CLEAN_CMD}" description="" id="com.ti.ccstudio.buildDefinitions.TMS470.Debug.29887805" name="Debug" parent="com.ti.ccstudio.buildDefinitions.TMS470.Debug" postbuildStep="&quot;${CCS_INSTALL_ROOT}/utils/tiobj2bin/tiobj2bin&quot; &quot;${BuildArtifactFileName}&quot; &quot;${BuildArtifactFileBaseName}.bin&quot; &quot;${CG_TOOL_ROOT}/bin/armofd&quot; &quot;${CG_TOOL_ROOT}/bin/armhex&quot; &quot;${CCS_INSTALL_ROOT}/utils/tiobj2bin/mkhex4bin&quot;">
    <folderInfo id="com.ti.ccstudio.buildDefinitions.TMS470.Debug.29887805." name="/" resourcePath="">
    <toolChain id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.DebugToolchain.1413321859" name="TI Build Tools" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.DebugToolchain" targetTool="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.linkerDebug.54786393">
    <option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.core.OPT_TAGS.1186284058" superClass="com.ti.ccstudio.buildDefinitions.core.OPT_TAGS" valueType="stringList">
    <listOptionValue builtIn="false" value="DEVICE_CONFIGURATION_ID=Cortex M.TM4C1233H6PGE"/>
    <listOptionValue builtIn="false" value="DEVICE_CORE_ID=CORTEX_M4_0"/>
    <listOptionValue builtIn="false" value="DEVICE_ENDIANNESS=little"/>
    <listOptionValue builtIn="false" value="OUTPUT_FORMAT=ELF"/>
    <listOptionValue builtIn="false" value="LINKER_COMMAND_FILE=tm4c1233h6pge.cmd"/>
    <listOptionValue builtIn="false" value="RUNTIME_SUPPORT_LIBRARY=libc.a"/>
    <listOptionValue builtIn="false" value="OUTPUT_TYPE=executable"/>
    <listOptionValue builtIn="false" value="CCS_MBS_VERSION=6.1.3"/>
    </option>
    <option id="com.ti.ccstudio.buildDefinitions.core.OPT_CODEGEN_VERSION.633343291" name="Compiler version" superClass="com.ti.ccstudio.buildDefinitions.core.OPT_CODEGEN_VERSION" value="20.2.6.LTS" valueType="string"/>
    <targetPlatform id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.targetPlatformDebug.14703105" name="Platform" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.targetPlatformDebug"/>
    <builder buildPath="${BuildDirectory}" id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.builderDebug.1753679376" keepEnvironmentInBuildfile="false" name="GNU Make" parallelBuildOn="true" parallelizationNumber="optimal" stopOnErr="true" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.builderDebug"/>
    <tool id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.compilerDebug.1413904078" name="Arm Compiler" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.compilerDebug">
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.SILICON_VERSION.852444868" name="Target processor version (--silicon_version, -mv)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.SILICON_VERSION" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.SILICON_VERSION.7M4" valueType="enumerated"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.CODE_STATE.686615903" name="Designate code state, 16-bit (thumb) or 32-bit (--code_state)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.CODE_STATE" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.CODE_STATE.16" valueType="enumerated"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.ABI.292950500" name="Application binary interface. (--abi)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.ABI" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.ABI.eabi" valueType="enumerated"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.FLOAT_SUPPORT.983293382" name="Specify floating point support (--float_support)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.FLOAT_SUPPORT" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.FLOAT_SUPPORT.FPv4SPD16" valueType="enumerated"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.GCC.507068544" name="Enable support for GCC extensions (DEPRECATED) (--gcc)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.GCC" value="true" valueType="boolean"/>
    <option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DEFINE.1382817670" name="Pre-define NAME (--define, -D)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DEFINE" valueType="definedSymbols">
    <listOptionValue builtIn="false" value="ccs"/>
    <listOptionValue builtIn="false" value="TARGET_IS_TM4C123_RB1"/>
    <listOptionValue builtIn="false" value="ccs=&quot;ccs&quot;"/>
    <listOptionValue builtIn="false" value="PART_TM4C1233H6PGE"/>
    </option>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.LITTLE_ENDIAN.430243852" name="Little endian code [See 'General' page to edit] (--little_endian, -me)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.LITTLE_ENDIAN" value="true" valueType="boolean"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.OPT_LEVEL.1160728128" name="Optimization level (--opt_level, -O)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.OPT_LEVEL" useByScannerDiscovery="false" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.OPT_LEVEL.off" valueType="enumerated"/>
    <option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.INCLUDE_PATH.1906185431" name="Add dir to #include search path (--include_path, -I)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.INCLUDE_PATH" valueType="includePath">
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library/driverlib"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Analog"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Boot"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Buffer"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Commands"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Common"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Controller"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/DataStreams"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/GPIO"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/HAL"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Hardware"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/HighVoltage"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Memory"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Scanner"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Shared"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/USB"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library/inc"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library/ti-cgt-arm_20.2.5.LTS/include"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library/usblib"/>
    </option>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.ADVICE__POWER.1600127724" name="Enable checking of ULP power rules (--advice:power)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.ADVICE__POWER" value="&quot;3,4,5.2,9,10,12.1&quot;" valueType="string"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.ADVICE__POWER_SEVERITY.1172308086" name="Set error category for ULP power rules (--advice:power_severity)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.ADVICE__POWER_SEVERITY" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.ADVICE__POWER_SEVERITY.remark" valueType="enumerated"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DEBUGGING_MODEL.1973519042" name="Debugging model" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DEBUGGING_MODEL" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DEBUGGING_MODEL.SYMDEBUG__DWARF" valueType="enumerated"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.C_DIALECT.2117170499" name="C Dialect" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.C_DIALECT" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.C_DIALECT.C99" valueType="enumerated"/>
    <option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DIAG_WARNING.1301765419" name="Treat diagnostic &lt;id&gt; as warning (--diag_warning, -pdsw)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DIAG_WARNING" valueType="stringList">
    <listOptionValue builtIn="false" value="225"/>
    </option>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DIAG_WRAP.1080006377" name="Wrap diagnostic messages (--diag_wrap)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DIAG_WRAP" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DIAG_WRAP.off" valueType="enumerated"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DISPLAY_ERROR_NUMBER.1563428335" name="Emit diagnostic identifier numbers (--display_error_number, -pden)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DISPLAY_ERROR_NUMBER" value="true" valueType="boolean"/>
    <inputType id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__C_SRCS.1225397662" name="C Sources" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__C_SRCS"/>
    <inputType id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__CPP_SRCS.1180807634" name="C++ Sources" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__CPP_SRCS"/>
    <inputType id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__ASM_SRCS.1326456381" name="Assembly Sources" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__ASM_SRCS"/>
    <inputType id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__ASM2_SRCS.1263765758" name="Assembly Sources" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__ASM2_SRCS"/>
    </tool>
    <tool id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.linkerDebug.54786393" name="Arm Linker" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.linkerDebug">
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.MAP_FILE.305214127" name="Link information (map) listed into &lt;file&gt; (--map_file, -m)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.MAP_FILE" value="${ProjName}.map" valueType="string"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.STACK_SIZE.842311674" name="Set C system stack size (--stack_size, -stack)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.STACK_SIZE" value="512" valueType="string"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.HEAP_SIZE.748201854" name="Heap size for C/C++ dynamic memory allocation (--heap_size, -heap)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.HEAP_SIZE" value="0" valueType="string"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.OUTPUT_FILE.1316197138" name="Specify output file name (--output_file, -o)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.OUTPUT_FILE" value="${ProjName}.out" valueType="string"/>
    <option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.LIBRARY.1243224366" name="Include library file or command file as input (--library, -l)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.LIBRARY" valueType="libs">
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library/driverlib/ccs/Debug/driverlib.lib"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library/usblib/ccs/Debug/usblib.lib"/>
    <listOptionValue builtIn="false" value="libc.a"/>
    </option>
    <option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.SEARCH_PATH.583251045" name="Add &lt;dir&gt; to library search path (--search_path, -i)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.SEARCH_PATH" valueType="libPaths">
    <listOptionValue builtIn="false" value="${CG_TOOL_ROOT}/lib"/>
    <listOptionValue builtIn="false" value="${CG_TOOL_ROOT}/include"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library/ti-cgt-arm_20.2.5.LTS/lib"/>
    </option>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.DIAG_WRAP.1067393242" name="Wrap diagnostic messages (--diag_wrap)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.DIAG_WRAP" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.DIAG_WRAP.off" valueType="enumerated"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.DISPLAY_ERROR_NUMBER.653857914" name="Emit diagnostic identifier numbers (--display_error_number)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.DISPLAY_ERROR_NUMBER" value="true" valueType="boolean"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.VERBOSE_DIAGNOSTICS.1945847904" name="Verbose diagnostics (--verbose_diagnostics)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.VERBOSE_DIAGNOSTICS" value="true" valueType="boolean"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.XML_LINK_INFO.1876843930" name="Detailed link information data-base into &lt;file&gt; (--xml_link_info, -xml_link_info)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.XML_LINK_INFO" value="${ProjName}_linkInfo.xml" valueType="string"/>
    <inputType id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exeLinker.inputType__CMD_SRCS.2088256597" name="Linker Command Files" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exeLinker.inputType__CMD_SRCS"/>
    <inputType id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exeLinker.inputType__CMD2_SRCS.942615326" name="Linker Command Files" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exeLinker.inputType__CMD2_SRCS"/>
    <inputType id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exeLinker.inputType__GEN_CMDS.1286432457" name="Generated Linker Command Files" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exeLinker.inputType__GEN_CMDS"/>
    </tool>
    <tool id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.hex.936241641" name="Arm Hex Utility" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.hex"/>
    </toolChain>
    </folderInfo>
    <sourceEntries>
    <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Software/Library/ti-cgt-arm_20.2.5.LTS/include/libcxx/include"/>
    <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Software/Library/ti-cgt-arm_20.2.5.LTS/include/libcxx/support/runtime"/>
    <entry excluding="tm4c1233h6pge.cmd|USB/usbVCOM.c|Simulators|RemoteSystemsTempFiles|Library/ti-cgt-arm_20.2.5.LTS/include/xlocale|Library/ti-cgt-arm_20.2.5.LTS/include/sys|Library/ti-cgt-arm_20.2.5.LTS/include/machine|Library/ti-cgt-arm_20.2.5.LTS/include/AUTOSAR31|Library/ti-cgt-arm_20.2.5.LTS/lib|tm4c1231h6pge.cmd|Common/xStartup.c|Automation|HAL/LPC|ISP|BundleFlashloader|BootLoader|Memory|Main|linkscripts|JLink|FlashLoader|Project|Rigged|Testing|xSegger|Software/Automation|tm4c123gh6pge_startup_ccs.c|Software/HAL/TIVA/etest_halTIVA_UART.c|Software/HAL/TIVA/etest_halTIVA_Timer.c|Software/HAL/TIVA/etest_halTIVA_SPI.c|Software/HAL/TIVA/etest_halTIVA_I2C.c|Software/HAL/TIVA/etest_halTIVA_ADC.c|Software/HAL/ecTestFramework.c|Software/Memory|etest_main.c|Software/USB/usbVCOM.c|Software/Common/xStartup.c|Software/HAL/LPC|Software/BundleFlashloader|Software/ISP|Software/Library|Software/JLink|Software/linkscripts|Software/Project|Software/Rigged|Software/Simulators|Software/Testing|Software/FlashLoader|Software/BootLoader|Software/BaseObjs|Software/Debug|Software/Main|Software/xSegger|Software/xChip_LPC15XX_M3" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
    </sourceEntries>
    </configuration>
    </storageModule>
    <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
    </cconfiguration>
    <cconfiguration id="com.ti.ccstudio.buildDefinitions.TMS470.Debug.29887805.196100926">
    <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="com.ti.ccstudio.buildDefinitions.TMS470.Debug.29887805.196100926" moduleId="org.eclipse.cdt.core.settings" name="Embedded Testing">
    <macros>
    <stringMacro name="BuildArtifactFilePath" type="VALUE_PATH_FILE" value="C:/Dev/PC/Cirris/CommonHardware/Debug/common_hardware.bin"/>
    <stringMacro name="BuildArtifactFileName" type="VALUE_TEXT" value="${ProjName}.bin"/>
    <stringMacro name="BuildArtifactFileExt" type="VALUE_TEXT" value="bin"/>
    </macros>
    <externalSettings/>
    <extensions>
    <extension id="com.ti.ccstudio.binaryparser.CoffParser" point="org.eclipse.cdt.core.BinaryParser"/>
    <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
    <extension id="com.ti.ccstudio.errorparser.CoffErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
    <extension id="com.ti.ccstudio.errorparser.AsmErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
    <extension id="com.ti.ccstudio.errorparser.LinkErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
    </extensions>
    </storageModule>
    <storageModule moduleId="cdtBuildSystem" version="4.0.0">
    <configuration artifactExtension="out" artifactName="${ProjName}" buildProperties="" cleanCommand="${CG_CLEAN_CMD}" description="" id="com.ti.ccstudio.buildDefinitions.TMS470.Debug.29887805.196100926" name="Embedded Testing" parent="com.ti.ccstudio.buildDefinitions.TMS470.Debug">
    <folderInfo id="com.ti.ccstudio.buildDefinitions.TMS470.Debug.29887805.196100926." name="/" resourcePath="">
    <toolChain id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.DebugToolchain.281315851" name="TI Build Tools" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.DebugToolchain" targetTool="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.linkerDebug.1771660381">
    <option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.core.OPT_TAGS.942207186" superClass="com.ti.ccstudio.buildDefinitions.core.OPT_TAGS" valueType="stringList">
    <listOptionValue builtIn="false" value="DEVICE_CONFIGURATION_ID=Cortex M.TM4C123GH6PGE"/>
    <listOptionValue builtIn="false" value="DEVICE_CORE_ID=CORTEX_M4_0"/>
    <listOptionValue builtIn="false" value="DEVICE_ENDIANNESS=little"/>
    <listOptionValue builtIn="false" value="OUTPUT_FORMAT=ELF"/>
    <listOptionValue builtIn="false" value="LINKER_COMMAND_FILE=common_hardware.cmd"/>
    <listOptionValue builtIn="false" value="RUNTIME_SUPPORT_LIBRARY=libc.a"/>
    <listOptionValue builtIn="false" value="CCS_MBS_VERSION=6.1.3"/>
    <listOptionValue builtIn="false" value="PRODUCTS="/>
    <listOptionValue builtIn="false" value="PRODUCT_MACRO_IMPORTS={}"/>
    <listOptionValue builtIn="false" value="OUTPUT_TYPE=executable"/>
    </option>
    <option id="com.ti.ccstudio.buildDefinitions.core.OPT_CODEGEN_VERSION.343974718" name="Compiler version" superClass="com.ti.ccstudio.buildDefinitions.core.OPT_CODEGEN_VERSION" value="20.2.5.LTS" valueType="string"/>
    <targetPlatform id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.targetPlatformDebug.1803739997" name="Platform" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.targetPlatformDebug"/>
    <builder buildPath="${BuildDirectory}" id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.builderDebug.682545432" keepEnvironmentInBuildfile="false" name="GNU Make" parallelBuildOn="true" parallelizationNumber="optimal" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.builderDebug"/>
    <tool id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.compilerDebug.1279399800" name="Arm Compiler" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.compilerDebug">
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.SILICON_VERSION.1674252218" name="Target processor version (--silicon_version, -mv)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.SILICON_VERSION" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.SILICON_VERSION.7M4" valueType="enumerated"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.CODE_STATE.517334221" name="Designate code state, 16-bit (thumb) or 32-bit (--code_state)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.CODE_STATE" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.CODE_STATE.16" valueType="enumerated"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.ABI.47551419" name="Application binary interface. (--abi)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.ABI" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.ABI.eabi" valueType="enumerated"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.FLOAT_SUPPORT.1163992637" name="Specify floating point support (--float_support)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.FLOAT_SUPPORT" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.FLOAT_SUPPORT.FPv4SPD16" valueType="enumerated"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.GCC.219520733" name="Enable support for GCC extensions (DEPRECATED) (--gcc)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.GCC" value="true" valueType="boolean"/>
    <option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DEFINE.1800076979" name="Pre-define NAME (--define, -D)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DEFINE" valueType="definedSymbols">
    <listOptionValue builtIn="false" value="ccs"/>
    <listOptionValue builtIn="false" value="PART_TM4C123GH6PGE"/>
    <listOptionValue builtIn="false" value="TARGET_IS_TM4C123_RB1"/>
    <listOptionValue builtIn="false" value="EMBEDDEDTESTING"/>
    <listOptionValue builtIn="false" value="ccs=&quot;ccs&quot;"/>
    </option>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.LITTLE_ENDIAN.1254488039" name="Little endian code [See 'General' page to edit] (--little_endian, -me)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.LITTLE_ENDIAN" value="true" valueType="boolean"/>
    <option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.INCLUDE_PATH.153694862" name="Add dir to #include search path (--include_path, -I)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.INCLUDE_PATH" valueType="includePath">
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library/driverlib"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Analog"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Boot"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Buffer"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Commands"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Common"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Controller"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/DataStreams"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/GPIO"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/HAL"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Hardware"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/HighVoltage"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Memory"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Scanner"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Shared"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/USB"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library/inc"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library/ti-cgt-arm_20.2.5.LTS/include"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library/usblib"/>
    </option>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DEBUGGING_MODEL.388697938" name="Debugging model" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DEBUGGING_MODEL" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DEBUGGING_MODEL.SYMDEBUG__DWARF" valueType="enumerated"/>
    <option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DIAG_WARNING.559081756" name="Treat diagnostic &lt;id&gt; as warning (--diag_warning, -pdsw)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DIAG_WARNING" valueType="stringList">
    <listOptionValue builtIn="false" value="225"/>
    </option>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DIAG_WRAP.211046812" name="Wrap diagnostic messages (--diag_wrap)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DIAG_WRAP" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DIAG_WRAP.off" valueType="enumerated"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DISPLAY_ERROR_NUMBER.1108075750" name="Emit diagnostic identifier numbers (--display_error_number, -pden)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compilerID.DISPLAY_ERROR_NUMBER" value="true" valueType="boolean"/>
    <inputType id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__C_SRCS.1628271020" name="C Sources" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__C_SRCS"/>
    <inputType id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__CPP_SRCS.1476733721" name="C++ Sources" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__CPP_SRCS"/>
    <inputType id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__ASM_SRCS.946501423" name="Assembly Sources" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__ASM_SRCS"/>
    <inputType id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__ASM2_SRCS.1165088293" name="Assembly Sources" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.compiler.inputType__ASM2_SRCS"/>
    </tool>
    <tool id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.linkerDebug.1771660381" name="Arm Linker" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exe.linkerDebug">
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.MAP_FILE.1003096631" name="Link information (map) listed into &lt;file&gt; (--map_file, -m)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.MAP_FILE" value="${ProjName}.map" valueType="string"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.STACK_SIZE.2022917836" name="Set C system stack size (--stack_size, -stack)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.STACK_SIZE" value="1024" valueType="string"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.HEAP_SIZE.413721488" name="Heap size for C/C++ dynamic memory allocation (--heap_size, -heap)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.HEAP_SIZE" value="0" valueType="string"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.OUTPUT_FILE.1121152397" name="Specify output file name (--output_file, -o)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.OUTPUT_FILE" value="${ProjName}.out" valueType="string"/>
    <option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.LIBRARY.1373599260" name="Include library file or command file as input (--library, -l)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.LIBRARY" valueType="libs">
    <listOptionValue builtIn="false" value="libc.a"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library/driverlib/ccs/Debug/driverlib.lib"/>
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library/usblib/ccs/Debug/usblib.lib"/>
    </option>
    <option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.SEARCH_PATH.532352911" name="Add &lt;dir&gt; to library search path (--search_path, -i)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.SEARCH_PATH" valueType="libPaths">
    <listOptionValue builtIn="false" value="${PROJECT_LOC}/Library/ti-cgt-arm_20.2.5.LTS/lib"/>
    </option>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.DIAG_WRAP.2083316489" name="Wrap diagnostic messages (--diag_wrap)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.DIAG_WRAP" value="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.DIAG_WRAP.off" valueType="enumerated"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.DISPLAY_ERROR_NUMBER.388062925" name="Emit diagnostic identifier numbers (--display_error_number)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.DISPLAY_ERROR_NUMBER" value="true" valueType="boolean"/>
    <option id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.XML_LINK_INFO.2118224564" name="Detailed link information data-base into &lt;file&gt; (--xml_link_info, -xml_link_info)" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.linkerID.XML_LINK_INFO" value="${ProjName}_linkInfo.xml" valueType="string"/>
    <inputType id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exeLinker.inputType__CMD_SRCS.1345842091" name="Linker Command Files" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exeLinker.inputType__CMD_SRCS"/>
    <inputType id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exeLinker.inputType__CMD2_SRCS.645884938" name="Linker Command Files" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exeLinker.inputType__CMD2_SRCS"/>
    <inputType id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exeLinker.inputType__GEN_CMDS.705285901" name="Generated Linker Command Files" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.exeLinker.inputType__GEN_CMDS"/>
    </tool>
    <tool id="com.ti.ccstudio.buildDefinitions.TMS470_20.2.hex.2087747767" name="Arm Hex Utility" superClass="com.ti.ccstudio.buildDefinitions.TMS470_20.2.hex"/>
    </toolChain>
    </folderInfo>
    <sourceEntries>
    <entry excluding="tm4c1231h6pge.cmd|Software/Scanner|Software/HighVoltage|Software/Hardware|Software/GPIO|Software/DataStreams|Software/Controller|Software/Common|Software/Commands|Software/Buffer|Software/Boot|Software/Analog|Software/Memory|Software/USB/usbVCOM.c|Software/Common/xStartup.c|Software/HAL/LPC|Software/BundleFlashloader|Software/ISP|Software/Library|Software/JLink|Software/linkscripts|Software/Project|Software/Rigged|Software/Simulators|Software/Testing|Software/FlashLoader|Software/BootLoader|Software/BaseObjs|Software/Debug|Software/Main|Software/xSegger|Software/xChip_LPC15XX_M3" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
    <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Software/Analog/__history"/>
    <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Software/Library/ti-cgt-arm_20.2.5.LTS/include/libcxx/include"/>
    <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Software/Library/ti-cgt-arm_20.2.5.LTS/include/libcxx/support/runtime"/>
    </sourceEntries>
    </configuration>
    </storageModule>
    <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
    </cconfiguration>
    </storageModule>
    <storageModule moduleId="org.eclipse.cdt.core.LanguageSettingsProviders"/>
    <storageModule moduleId="cdtBuildSystem" version="4.0.0">
    <project id="common_hardware.com.ti.ccstudio.buildDefinitions.TMS470.ProjectType.1756522369" name="TMS470" projectType="com.ti.ccstudio.buildDefinitions.TMS470.ProjectType"/>
    </storageModule>
    <storageModule moduleId="org.eclipse.cdt.make.core.buildtargets"/>
    <storageModule moduleId="refreshScope" versionNumber="2">
    <configuration configurationName="Embedded Testing">
    <resource resourceType="PROJECT" workspacePath="/common_hardware"/>
    </configuration>
    <configuration configurationName="Debug">
    <resource resourceType="PROJECT" workspacePath="/common_hardware"/>
    </configuration>
    </storageModule>
    <storageModule moduleId="org.eclipse.cdt.internal.ui.text.commentOwnerProjectMappings"/>
    <storageModule moduleId="scannerConfiguration"/>
    </cproject>

  • Thanks.

    <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Software/Library/ti-cgt-arm_20.2.5.LTS/include/libcxx/include"/>
    <entry flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="Software/Library/ti-cgt-arm_20.2.5.LTS/include/libcxx/support/runtime"/>

    Does this path exist inside your project folder:

    Software/Library/ti-cgt-arm_20.2.5.LTS/include/libcxx/include

    Can you also share just your .cproject file for a working project that does not have the issue?

    Thanks

    ki

  • It looks like those paths do not exist in my project folder. Should I just delete those lines out of my .cproject? I currently do not have another project to provide you with a .cproject from.

  • I see them in the below settings:

    These settings are typically not used. Did you add them here youself?

  • I do not recall adding them. It is possible that they got added for some reason in the initial set up as we were having some issues. I should be ok to just delete those right?

  • Try removing them. But I expect you may still have the undefined errors.

    After you build, please provide the output from the actual build console (not the Problems view)

  • Here is the build console view. I have been able to get rid of the undefined errors and have not been able to recreate the problem. I am sill not sure what caused them.


    **** Clean-only build of configuration Debug for project common_hardware ****

    "C:\\ti\\ccs1110\\ccs\\utils\\bin\\gmake" -j 12 clean -O

    DEL /F "common_hardware.bin" "common_hardware.out"
    DEL /F "startup_ccs.obj" "Analog\aADC.obj" "Analog\aDAC.obj" "Boot\btDriverInit.obj" "Buffer\bBuffer.obj" "Commands\cAnteriorBoot.obj" "Commands\cAnteriorMeasure.obj" "Commands\cAnteriorScanner.obj" "Commands\cSearch.obj" "Commands\cSelfTest.obj" "Common\main.obj" "Common\xAnteriorCommandProcessor.obj" "Common\xEmbCrcCalc.obj" "Common\xErrorHandler.obj" "Common\xFixedPoint.obj" "Common\xGlobals.obj" "Common\xPosteriorCommandProcessor.obj" "Common\xSearch.obj" "Common\xSelfTest.obj" "Common\xSemaphore.obj" "Common\xTimer.obj" "Common\xTypes.obj" "Common\xUtilities.obj" "Controller\AssortedCommands.obj" "Controller\CalibrationData.obj" "Controller\Measure.obj" "Controller\MeasureCapacitance.obj" "Controller\MeasureInductance.obj" "Controller\MeasureResistance.obj" "DataStreams\dsStream.obj" "GPIO\gpioPin.obj" "GPIO\gpioPort.obj" "HAL\TIVA\etest_halTIVA_ADC.obj" "HAL\TIVA\etest_halTIVA_I2C.obj" "HAL\TIVA\etest_halTIVA_SPI.obj" "HAL\TIVA\etest_halTIVA_Timer.obj" "HAL\TIVA\etest_halTIVA_UART.obj" "HAL\TIVA\halTIVA_ADC.obj"
    DEL /F "HAL\TIVA\halTIVA_DMA.obj" "HAL\TIVA\halTIVA_DebugBits.obj" "HAL\TIVA\halTIVA_I2C.obj" "HAL\TIVA\halTIVA_IAP.obj" "HAL\TIVA\halTIVA_PWM.obj" "HAL\TIVA\halTIVA_Pin.obj" "HAL\TIVA\halTIVA_Port.obj" "HAL\TIVA\halTIVA_SPI.obj" "HAL\TIVA\halTIVA_System.obj" "HAL\TIVA\halTIVA_Timer.obj" "HAL\TIVA\halTIVA_UART.obj" "HAL\TIVA\halTIVA_USB.obj" "HAL\ecAssert.obj" "HAL\ecPrintMessages.obj" "HAL\ecTestFramework.obj" "HAL\halDAC7563.obj" "HAL\halHDC1050.obj" "HAL\halMCP4725.obj" "HAL\xStringUtils.obj" "Hardware\hwAFE.obj" "Hardware\hwCurrentSource.obj" "Hardware\hwLatch.obj" "Hardware\hwRelay.obj" "Hardware\hwSourceSinkSense.obj" "HighVoltage\EnvelopeRegulator.obj" "HighVoltage\HVSupply.obj" "HighVoltage\HighVoltageRegulator.obj" "HighVoltage\SineGenerator.obj" "HighVoltage\SineTable.obj" "Library\driverlib\adc.obj" "Library\driverlib\aes.obj" "Library\driverlib\can.obj" "Library\driverlib\comp.obj" "Library\driverlib\cpu.obj" "Library\driverlib\crc.obj" "Library\driverlib\des.obj" "Library\driverlib\eeprom.obj"
    DEL /F "Library\driverlib\emac.obj" "Library\driverlib\epi.obj" "Library\driverlib\epi_workaround_ccs.obj" "Library\driverlib\flash.obj" "Library\driverlib\fpu.obj" "Library\driverlib\gpio.obj" "Library\driverlib\hibernate.obj" "Library\driverlib\i2c.obj" "Library\driverlib\interrupt.obj" "Library\driverlib\lcd.obj" "Library\driverlib\mpu.obj" "Library\driverlib\onewire.obj" "Library\driverlib\pwm.obj" "Library\driverlib\qei.obj" "Library\driverlib\shamd5.obj" "Library\driverlib\ssi.obj" "Library\driverlib\sw_crc.obj" "Library\driverlib\sysctl.obj" "Library\driverlib\sysexc.obj" "Library\driverlib\systick.obj" "Library\driverlib\timer.obj" "Library\driverlib\uart.obj" "Library\driverlib\udma.obj" "Library\driverlib\usb.obj" "Library\driverlib\watchdog.obj" "Library\usblib\device\usbdaudio.obj" "Library\usblib\device\usbdbulk.obj" "Library\usblib\device\usbdcdc.obj" "Library\usblib\device\usbdcdesc.obj" "Library\usblib\device\usbdcomp.obj" "Library\usblib\device\usbdconfig.obj" "Library\usblib\device\usbddfu-rt.obj"
    DEL /F "Library\usblib\device\usbdenum.obj" "Library\usblib\device\usbdhandler.obj" "Library\usblib\device\usbdhid.obj" "Library\usblib\device\usbdhidgamepad.obj" "Library\usblib\device\usbdhidkeyb.obj" "Library\usblib\device\usbdhidmouse.obj" "Library\usblib\device\usbdmsc.obj" "Library\usblib\host\usbhaudio.obj" "Library\usblib\host\usbhhid.obj" "Library\usblib\host\usbhhidkeyboard.obj" "Library\usblib\host\usbhhidmouse.obj" "Library\usblib\host\usbhhub.obj" "Library\usblib\host\usbhmsc.obj" "Library\usblib\host\usbhostenum.obj" "Library\usblib\host\usbhscsi.obj" "Library\usblib\usbbuffer.obj" "Library\usblib\usbdesc.obj" "Library\usblib\usbdma.obj" "Library\usblib\usbkeyboardmap.obj" "Library\usblib\usbmode.obj" "Library\usblib\usbringbuf.obj" "Library\usblib\usbtick.obj" "Library\usblib\usbulpi.obj" "Scanner\Point.obj" "Shared\shGlobals.obj" "Shared\shTypes.obj" "USB\usb_serial_structs.obj"
    DEL /F "startup_ccs.d" "Analog\aADC.d" "Analog\aDAC.d" "Boot\btDriverInit.d" "Buffer\bBuffer.d" "Commands\cAnteriorBoot.d" "Commands\cAnteriorMeasure.d" "Commands\cAnteriorScanner.d" "Commands\cSearch.d" "Commands\cSelfTest.d" "Common\main.d" "Common\xAnteriorCommandProcessor.d" "Common\xEmbCrcCalc.d" "Common\xErrorHandler.d" "Common\xFixedPoint.d" "Common\xGlobals.d" "Common\xPosteriorCommandProcessor.d" "Common\xSearch.d" "Common\xSelfTest.d" "Common\xSemaphore.d" "Common\xTimer.d" "Common\xTypes.d" "Common\xUtilities.d" "Controller\AssortedCommands.d" "Controller\CalibrationData.d" "Controller\Measure.d" "Controller\MeasureCapacitance.d" "Controller\MeasureInductance.d" "Controller\MeasureResistance.d" "DataStreams\dsStream.d" "GPIO\gpioPin.d" "GPIO\gpioPort.d" "HAL\TIVA\etest_halTIVA_ADC.d" "HAL\TIVA\etest_halTIVA_I2C.d" "HAL\TIVA\etest_halTIVA_SPI.d" "HAL\TIVA\etest_halTIVA_Timer.d" "HAL\TIVA\etest_halTIVA_UART.d" "HAL\TIVA\halTIVA_ADC.d" "HAL\TIVA\halTIVA_DMA.d" "HAL\TIVA\halTIVA_DebugBits.d"
    DEL /F "HAL\TIVA\halTIVA_I2C.d" "HAL\TIVA\halTIVA_IAP.d" "HAL\TIVA\halTIVA_PWM.d" "HAL\TIVA\halTIVA_Pin.d" "HAL\TIVA\halTIVA_Port.d" "HAL\TIVA\halTIVA_SPI.d" "HAL\TIVA\halTIVA_System.d" "HAL\TIVA\halTIVA_Timer.d" "HAL\TIVA\halTIVA_UART.d" "HAL\TIVA\halTIVA_USB.d" "HAL\ecAssert.d" "HAL\ecPrintMessages.d" "HAL\ecTestFramework.d" "HAL\halDAC7563.d" "HAL\halHDC1050.d" "HAL\halMCP4725.d" "HAL\xStringUtils.d" "Hardware\hwAFE.d" "Hardware\hwCurrentSource.d" "Hardware\hwLatch.d" "Hardware\hwRelay.d" "Hardware\hwSourceSinkSense.d" "HighVoltage\EnvelopeRegulator.d" "HighVoltage\HVSupply.d" "HighVoltage\HighVoltageRegulator.d" "HighVoltage\SineGenerator.d" "HighVoltage\SineTable.d" "Library\driverlib\adc.d" "Library\driverlib\aes.d" "Library\driverlib\can.d" "Library\driverlib\comp.d" "Library\driverlib\cpu.d" "Library\driverlib\crc.d" "Library\driverlib\des.d" "Library\driverlib\eeprom.d" "Library\driverlib\emac.d" "Library\driverlib\epi.d" "Library\driverlib\flash.d" "Library\driverlib\fpu.d" "Library\driverlib\gpio.d"
    DEL /F "Library\driverlib\hibernate.d" "Library\driverlib\i2c.d" "Library\driverlib\interrupt.d" "Library\driverlib\lcd.d" "Library\driverlib\mpu.d" "Library\driverlib\onewire.d" "Library\driverlib\pwm.d" "Library\driverlib\qei.d" "Library\driverlib\shamd5.d" "Library\driverlib\ssi.d" "Library\driverlib\sw_crc.d" "Library\driverlib\sysctl.d" "Library\driverlib\sysexc.d" "Library\driverlib\systick.d" "Library\driverlib\timer.d" "Library\driverlib\uart.d" "Library\driverlib\udma.d" "Library\driverlib\usb.d" "Library\driverlib\watchdog.d" "Library\usblib\device\usbdaudio.d" "Library\usblib\device\usbdbulk.d" "Library\usblib\device\usbdcdc.d" "Library\usblib\device\usbdcdesc.d" "Library\usblib\device\usbdcomp.d" "Library\usblib\device\usbdconfig.d" "Library\usblib\device\usbddfu-rt.d" "Library\usblib\device\usbdenum.d" "Library\usblib\device\usbdhandler.d" "Library\usblib\device\usbdhid.d" "Library\usblib\device\usbdhidgamepad.d" "Library\usblib\device\usbdhidkeyb.d" "Library\usblib\device\usbdhidmouse.d"
    DEL /F "Library\usblib\device\usbdmsc.d" "Library\usblib\host\usbhaudio.d" "Library\usblib\host\usbhhid.d" "Library\usblib\host\usbhhidkeyboard.d" "Library\usblib\host\usbhhidmouse.d" "Library\usblib\host\usbhhub.d" "Library\usblib\host\usbhmsc.d" "Library\usblib\host\usbhostenum.d" "Library\usblib\host\usbhscsi.d" "Library\usblib\usbbuffer.d" "Library\usblib\usbdesc.d" "Library\usblib\usbdma.d" "Library\usblib\usbkeyboardmap.d" "Library\usblib\usbmode.d" "Library\usblib\usbringbuf.d" "Library\usblib\usbtick.d" "Library\usblib\usbulpi.d" "Scanner\Point.d" "Shared\shGlobals.d" "Shared\shTypes.d" "USB\usb_serial_structs.d"
    DEL /F "Library\driverlib\epi_workaround_ccs.d"
    Could Not Find C:\Dev\PC\Cirris\CommonHardware\Software\Debug\Library\driverlib\epi_workaround_ccs.d
    Finished clean

    **** Build Finished ****

    **** Build of configuration Debug for project common_hardware ****

    "C:\\ti\\ccs1110\\ccs\\utils\\bin\\gmake" -j 12 all -O

    Building file: "../startup_ccs.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="startup_ccs.d_raw" "../startup_ccs.c"
    Finished building: "../startup_ccs.c"

    Building file: "../Analog/aDAC.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Analog/aDAC.d_raw" --obj_directory="Analog" "../Analog/aDAC.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Analog/aDAC.c"

    Building file: "../Analog/aADC.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Analog/aADC.d_raw" --obj_directory="Analog" "../Analog/aADC.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Analog/aADC.c"

    Building file: "../Commands/cAnteriorBoot.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Commands/cAnteriorBoot.d_raw" --obj_directory="Commands" "../Commands/cAnteriorBoot.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Commands/cAnteriorBoot.c"

    Building file: "../Common/main.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Common/main.d_raw" --obj_directory="Common" "../Common/main.c"
    "..\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Common/main.c"

    Building file: "../Common/xEmbCrcCalc.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Common/xEmbCrcCalc.d_raw" --obj_directory="Common" "../Common/xEmbCrcCalc.c"
    "..\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Common/xEmbCrcCalc.c"

    Building file: "../Common/xErrorHandler.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Common/xErrorHandler.d_raw" --obj_directory="Common" "../Common/xErrorHandler.c"
    Finished building: "../Common/xErrorHandler.c"

    Building file: "../Commands/cAnteriorScanner.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Commands/cAnteriorScanner.d_raw" --obj_directory="Commands" "../Commands/cAnteriorScanner.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Commands/cAnteriorScanner.c"

    Building file: "../Commands/cAnteriorMeasure.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Commands/cAnteriorMeasure.d_raw" --obj_directory="Commands" "../Commands/cAnteriorMeasure.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Commands/cAnteriorMeasure.c"

    Building file: "../Commands/cSearch.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Commands/cSearch.d_raw" --obj_directory="Commands" "../Commands/cSearch.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Commands/cSearch.c"

    Building file: "../Common/xSearch.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Common/xSearch.d_raw" --obj_directory="Common" "../Common/xSearch.c"
    "..\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Common/xSearch.c"

    Building file: "../Buffer/bBuffer.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Buffer/bBuffer.d_raw" --obj_directory="Buffer" "../Buffer/bBuffer.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Buffer/bBuffer.c"

    Building file: "../Boot/btDriverInit.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Boot/btDriverInit.d_raw" --obj_directory="Boot" "../Boot/btDriverInit.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Boot/btDriverInit.c"

    Building file: "../Commands/cSelfTest.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Commands/cSelfTest.d_raw" --obj_directory="Commands" "../Commands/cSelfTest.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Commands/cSelfTest.c"

    Building file: "../Common/xGlobals.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Common/xGlobals.d_raw" --obj_directory="Common" "../Common/xGlobals.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Common/xGlobals.c"

    Building file: "../Common/xSelfTest.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Common/xSelfTest.d_raw" --obj_directory="Common" "../Common/xSelfTest.c"
    "..\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Common/xSelfTest.c"

    Building file: "../Common/xSemaphore.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Common/xSemaphore.d_raw" --obj_directory="Common" "../Common/xSemaphore.c"
    "..\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Common/xSemaphore.c"

    Building file: "../Common/xFixedPoint.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Common/xFixedPoint.d_raw" --obj_directory="Common" "../Common/xFixedPoint.c"
    "..\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Common/xFixedPoint.c"

    Building file: "../Common/xTypes.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Common/xTypes.d_raw" --obj_directory="Common" "../Common/xTypes.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Common/xTypes.c"

    Building file: "../Common/xTimer.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Common/xTimer.d_raw" --obj_directory="Common" "../Common/xTimer.c"
    "..\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Common/xTimer.c"

    Building file: "../Common/xAnteriorCommandProcessor.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Common/xAnteriorCommandProcessor.d_raw" --obj_directory="Common" "../Common/xAnteriorCommandProcessor.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Common/xAnteriorCommandProcessor.c"

    Building file: "../Common/xPosteriorCommandProcessor.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Common/xPosteriorCommandProcessor.d_raw" --obj_directory="Common" "../Common/xPosteriorCommandProcessor.c"
    "..\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Common/xPosteriorCommandProcessor.c"

    Building file: "../Common/xUtilities.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Common/xUtilities.d_raw" --obj_directory="Common" "../Common/xUtilities.c"
    Finished building: "../Common/xUtilities.c"

    Building file: "../Controller/CalibrationData.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Controller/CalibrationData.d_raw" --obj_directory="Controller" "../Controller/CalibrationData.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Controller/CalibrationData.c"

    Building file: "../HAL/TIVA/etest_halTIVA_ADC.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/etest_halTIVA_ADC.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/etest_halTIVA_ADC.c"
    Finished building: "../HAL/TIVA/etest_halTIVA_ADC.c"

    Building file: "../HAL/TIVA/etest_halTIVA_I2C.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/etest_halTIVA_I2C.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/etest_halTIVA_I2C.c"
    Finished building: "../HAL/TIVA/etest_halTIVA_I2C.c"

    Building file: "../Controller/AssortedCommands.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Controller/AssortedCommands.d_raw" --obj_directory="Controller" "../Controller/AssortedCommands.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Controller/AssortedCommands.c"

    Building file: "../HAL/TIVA/etest_halTIVA_SPI.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/etest_halTIVA_SPI.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/etest_halTIVA_SPI.c"
    Finished building: "../HAL/TIVA/etest_halTIVA_SPI.c"

    Building file: "../Controller/MeasureCapacitance.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Controller/MeasureCapacitance.d_raw" --obj_directory="Controller" "../Controller/MeasureCapacitance.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Controller/MeasureCapacitance.c"

    Building file: "../DataStreams/dsStream.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="DataStreams/dsStream.d_raw" --obj_directory="DataStreams" "../DataStreams/dsStream.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../DataStreams/dsStream.c"

    Building file: "../GPIO/gpioPort.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="GPIO/gpioPort.d_raw" --obj_directory="GPIO" "../GPIO/gpioPort.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../GPIO/gpioPort.c"

    Building file: "../Controller/MeasureInductance.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Controller/MeasureInductance.d_raw" --obj_directory="Controller" "../Controller/MeasureInductance.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Controller/MeasureInductance.c"

    Building file: "../GPIO/gpioPin.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="GPIO/gpioPin.d_raw" --obj_directory="GPIO" "../GPIO/gpioPin.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../GPIO/gpioPin.c"

    Building file: "../Controller/Measure.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Controller/Measure.d_raw" --obj_directory="Controller" "../Controller/Measure.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Controller/Measure.c"

    Building file: "../HAL/TIVA/etest_halTIVA_Timer.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/etest_halTIVA_Timer.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/etest_halTIVA_Timer.c"
    Finished building: "../HAL/TIVA/etest_halTIVA_Timer.c"

    Building file: "../Controller/MeasureResistance.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Controller/MeasureResistance.d_raw" --obj_directory="Controller" "../Controller/MeasureResistance.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Controller/MeasureResistance.c"

    Building file: "../HAL/TIVA/etest_halTIVA_UART.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/etest_halTIVA_UART.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/etest_halTIVA_UART.c"
    Finished building: "../HAL/TIVA/etest_halTIVA_UART.c"

    Building file: "../HAL/TIVA/halTIVA_DMA.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/halTIVA_DMA.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/halTIVA_DMA.c"
    Finished building: "../HAL/TIVA/halTIVA_DMA.c"

    Building file: "../HAL/TIVA/halTIVA_ADC.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/halTIVA_ADC.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/halTIVA_ADC.c"
    Finished building: "../HAL/TIVA/halTIVA_ADC.c"

    Building file: "../HAL/TIVA/halTIVA_IAP.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/halTIVA_IAP.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/halTIVA_IAP.c"
    Finished building: "../HAL/TIVA/halTIVA_IAP.c"

    Building file: "../HAL/TIVA/halTIVA_DebugBits.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/halTIVA_DebugBits.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/halTIVA_DebugBits.c"
    Finished building: "../HAL/TIVA/halTIVA_DebugBits.c"

    Building file: "../HAL/TIVA/halTIVA_I2C.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/halTIVA_I2C.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/halTIVA_I2C.c"
    Finished building: "../HAL/TIVA/halTIVA_I2C.c"

    Building file: "../HAL/TIVA/halTIVA_PWM.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/halTIVA_PWM.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/halTIVA_PWM.c"
    Finished building: "../HAL/TIVA/halTIVA_PWM.c"

    Building file: "../HAL/TIVA/halTIVA_System.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/halTIVA_System.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/halTIVA_System.c"
    Finished building: "../HAL/TIVA/halTIVA_System.c"

    Building file: "../HAL/TIVA/halTIVA_Port.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/halTIVA_Port.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/halTIVA_Port.c"
    Finished building: "../HAL/TIVA/halTIVA_Port.c"

    Building file: "../HAL/TIVA/halTIVA_SPI.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/halTIVA_SPI.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/halTIVA_SPI.c"
    Finished building: "../HAL/TIVA/halTIVA_SPI.c"

    Building file: "../HAL/TIVA/halTIVA_Timer.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/halTIVA_Timer.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/halTIVA_Timer.c"
    Finished building: "../HAL/TIVA/halTIVA_Timer.c"

    Building file: "../HAL/TIVA/halTIVA_Pin.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/halTIVA_Pin.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/halTIVA_Pin.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../HAL/TIVA/halTIVA_Pin.c"

    Building file: "../HAL/TIVA/halTIVA_UART.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/halTIVA_UART.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/halTIVA_UART.c"
    Finished building: "../HAL/TIVA/halTIVA_UART.c"

    Building file: "../HAL/ecPrintMessages.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/ecPrintMessages.d_raw" --obj_directory="HAL" "../HAL/ecPrintMessages.c"
    Finished building: "../HAL/ecPrintMessages.c"

    Building file: "../HAL/TIVA/halTIVA_USB.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/TIVA/halTIVA_USB.d_raw" --obj_directory="HAL/TIVA" "../HAL/TIVA/halTIVA_USB.c"
    Finished building: "../HAL/TIVA/halTIVA_USB.c"

    Building file: "../HAL/ecTestFramework.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/ecTestFramework.d_raw" --obj_directory="HAL" "../HAL/ecTestFramework.c"
    Finished building: "../HAL/ecTestFramework.c"

    Building file: "../HAL/ecAssert.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/ecAssert.d_raw" --obj_directory="HAL" "../HAL/ecAssert.c"
    Finished building: "../HAL/ecAssert.c"

    Building file: "../HAL/halDAC7563.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/halDAC7563.d_raw" --obj_directory="HAL" "../HAL/halDAC7563.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../HAL/halDAC7563.c"

    Building file: "../HAL/halHDC1050.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/halHDC1050.d_raw" --obj_directory="HAL" "../HAL/halHDC1050.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../HAL/halHDC1050.c"

    Building file: "../HAL/halMCP4725.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/halMCP4725.d_raw" --obj_directory="HAL" "../HAL/halMCP4725.c"
    Finished building: "../HAL/halMCP4725.c"

    Building file: "../HAL/xStringUtils.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HAL/xStringUtils.d_raw" --obj_directory="HAL" "../HAL/xStringUtils.c"
    Finished building: "../HAL/xStringUtils.c"

    Building file: "../Hardware/hwAFE.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Hardware/hwAFE.d_raw" --obj_directory="Hardware" "../Hardware/hwAFE.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Hardware/hwAFE.c"

    Building file: "../Hardware/hwRelay.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Hardware/hwRelay.d_raw" --obj_directory="Hardware" "../Hardware/hwRelay.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Hardware/hwRelay.c"

    Building file: "../Hardware/hwCurrentSource.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Hardware/hwCurrentSource.d_raw" --obj_directory="Hardware" "../Hardware/hwCurrentSource.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Hardware/hwCurrentSource.c"

    Building file: "../Hardware/hwLatch.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Hardware/hwLatch.d_raw" --obj_directory="Hardware" "../Hardware/hwLatch.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Hardware/hwLatch.c"

    Building file: "../Hardware/hwSourceSinkSense.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Hardware/hwSourceSinkSense.d_raw" --obj_directory="Hardware" "../Hardware/hwSourceSinkSense.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Hardware/hwSourceSinkSense.c"

    Building file: "../HighVoltage/SineGenerator.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HighVoltage/SineGenerator.d_raw" --obj_directory="HighVoltage" "../HighVoltage/SineGenerator.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../HighVoltage/SineGenerator.c"

    Building file: "../HighVoltage/EnvelopeRegulator.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HighVoltage/EnvelopeRegulator.d_raw" --obj_directory="HighVoltage" "../HighVoltage/EnvelopeRegulator.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../HighVoltage/EnvelopeRegulator.c"

    Building file: "../HighVoltage/SineTable.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HighVoltage/SineTable.d_raw" --obj_directory="HighVoltage" "../HighVoltage/SineTable.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../HighVoltage/SineTable.c"

    Building file: "../Library/driverlib/cpu.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/cpu.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/cpu.c"
    Finished building: "../Library/driverlib/cpu.c"

    Building file: "../Library/driverlib/comp.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/comp.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/comp.c"
    Finished building: "../Library/driverlib/comp.c"

    Building file: "../Library/driverlib/crc.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/crc.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/crc.c"
    Finished building: "../Library/driverlib/crc.c"

    Building file: "../HighVoltage/HighVoltageRegulator.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HighVoltage/HighVoltageRegulator.d_raw" --obj_directory="HighVoltage" "../HighVoltage/HighVoltageRegulator.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../HighVoltage/HighVoltageRegulator.c"

    Building file: "../Library/driverlib/aes.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/aes.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/aes.c"
    Finished building: "../Library/driverlib/aes.c"

    Building file: "../Library/driverlib/epi_workaround_ccs.s"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/epi_workaround_ccs.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/epi_workaround_ccs.s"
    Finished building: "../Library/driverlib/epi_workaround_ccs.s"

    Building file: "../Library/driverlib/adc.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/adc.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/adc.c"
    Finished building: "../Library/driverlib/adc.c"

    Building file: "../Library/driverlib/des.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/des.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/des.c"
    Finished building: "../Library/driverlib/des.c"

    Building file: "../Library/driverlib/can.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/can.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/can.c"
    "../Library/driverlib/can.c", line 344: remark #1528-D: (ULP 3.1) Detected flag polling using CAN_IF1CRQ_BUSY. Recommend using an interrupt combined with enter LPMx and ISR
    "../Library/driverlib/can.c", line 366: remark #1528-D: (ULP 3.1) Detected flag polling using CAN_IF1CRQ_BUSY. Recommend using an interrupt combined with enter LPMx and ISR
    "../Library/driverlib/can.c", line 391: remark #1528-D: (ULP 3.1) Detected flag polling using CAN_IF1CRQ_BUSY. Recommend using an interrupt combined with enter LPMx and ISR
    "../Library/driverlib/can.c", line 1105: remark #1528-D: (ULP 3.1) Detected flag polling using CAN_IF1CRQ_BUSY. Recommend using an interrupt combined with enter LPMx and ISR
    "../Library/driverlib/can.c", line 1123: remark #1528-D: (ULP 3.1) Detected flag polling using CAN_IF1CRQ_BUSY. Recommend using an interrupt combined with enter LPMx and ISR
    "../Library/driverlib/can.c", line 1504: remark #1528-D: (ULP 3.1) Detected flag polling using CAN_IF1CRQ_BUSY. Recommend using an interrupt combined with enter LPMx and ISR
    "../Library/driverlib/can.c", line 1882: remark #1528-D: (ULP 3.1) Detected flag polling using CAN_IF1CRQ_BUSY. Recommend using an interrupt combined with enter LPMx and ISR
    "../Library/driverlib/can.c", line 2049: remark #1528-D: (ULP 3.1) Detected flag polling using CAN_IF1CRQ_BUSY. Recommend using an interrupt combined with enter LPMx and ISR
    "../Library/driverlib/can.c", line 2094: remark #1528-D: (ULP 3.1) Detected flag polling using CAN_IF1CRQ_BUSY. Recommend using an interrupt combined with enter LPMx and ISR
    Finished building: "../Library/driverlib/can.c"

    Building file: "../Library/driverlib/eeprom.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/eeprom.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/eeprom.c"
    Finished building: "../Library/driverlib/eeprom.c"

    Building file: "../Library/driverlib/fpu.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/fpu.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/fpu.c"
    Finished building: "../Library/driverlib/fpu.c"

    Building file: "../Library/driverlib/epi.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/epi.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/epi.c"
    Finished building: "../Library/driverlib/epi.c"

    Building file: "../Library/driverlib/flash.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/flash.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/flash.c"
    Finished building: "../Library/driverlib/flash.c"

    Building file: "../Library/driverlib/interrupt.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/interrupt.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/interrupt.c"
    Finished building: "../Library/driverlib/interrupt.c"

    Building file: "../Library/driverlib/mpu.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/mpu.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/mpu.c"
    Finished building: "../Library/driverlib/mpu.c"

    Building file: "../Library/driverlib/emac.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/emac.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/emac.c"
    "../Library/driverlib/emac.c", line 3626: remark #1528-D: (ULP 3.1) Detected flag polling using EMAC_TARGNANO_TRGTBUSY. Recommend using an interrupt combined with enter LPMx and ISR
    Finished building: "../Library/driverlib/emac.c"

    Building file: "../Library/driverlib/hibernate.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/hibernate.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/hibernate.c"
    Finished building: "../Library/driverlib/hibernate.c"

    Building file: "../Library/driverlib/onewire.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/onewire.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/onewire.c"
    "../Library/driverlib/onewire.c", line 208: remark #1528-D: (ULP 3.1) Detected flag polling using ONEWIRE_CS_BUSY. Recommend using an interrupt combined with enter LPMx and ISR
    Finished building: "../Library/driverlib/onewire.c"

    Building file: "../Library/driverlib/lcd.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/lcd.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/lcd.c"
    Finished building: "../Library/driverlib/lcd.c"

    Building file: "../Library/driverlib/gpio.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/gpio.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/gpio.c"
    Finished building: "../Library/driverlib/gpio.c"

    Building file: "../Library/driverlib/i2c.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/i2c.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/i2c.c"
    Finished building: "../Library/driverlib/i2c.c"

    Building file: "../Library/driverlib/qei.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/qei.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/qei.c"
    Finished building: "../Library/driverlib/qei.c"

    Building file: "../Library/driverlib/shamd5.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/shamd5.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/shamd5.c"
    Finished building: "../Library/driverlib/shamd5.c"

    Building file: "../Library/driverlib/pwm.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/pwm.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/pwm.c"
    Finished building: "../Library/driverlib/pwm.c"

    Building file: "../Library/driverlib/ssi.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/ssi.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/ssi.c"
    Finished building: "../Library/driverlib/ssi.c"

    Building file: "../Library/driverlib/sw_crc.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/sw_crc.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/sw_crc.c"
    Finished building: "../Library/driverlib/sw_crc.c"

    Building file: "../Library/driverlib/sysexc.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/sysexc.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/sysexc.c"
    Finished building: "../Library/driverlib/sysexc.c"

    Building file: "../Library/driverlib/systick.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/systick.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/systick.c"
    Finished building: "../Library/driverlib/systick.c"

    Building file: "../Library/driverlib/watchdog.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/watchdog.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/watchdog.c"
    Finished building: "../Library/driverlib/watchdog.c"

    Building file: "../Library/driverlib/udma.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/udma.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/udma.c"
    Finished building: "../Library/driverlib/udma.c"

    Building file: "../Library/driverlib/timer.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/timer.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/timer.c"
    Finished building: "../Library/driverlib/timer.c"

    Building file: "../Library/driverlib/sysctl.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/sysctl.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/sysctl.c"
    Finished building: "../Library/driverlib/sysctl.c"

    Building file: "../Library/driverlib/uart.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/uart.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/uart.c"
    "../Library/driverlib/uart.c", line 565: remark #1528-D: (ULP 3.1) Detected flag polling using UART_FR_BUSY. Recommend using an interrupt combined with enter LPMx and ISR
    Finished building: "../Library/driverlib/uart.c"

    Building file: "../HighVoltage/HVSupply.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="HighVoltage/HVSupply.d_raw" --obj_directory="HighVoltage" "../HighVoltage/HVSupply.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../HighVoltage/HVSupply.c"

    Building file: "../Library/usblib/device/usbdcdesc.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/device/usbdcdesc.d_raw" --obj_directory="Library/usblib/device" "../Library/usblib/device/usbdcdesc.c"
    Finished building: "../Library/usblib/device/usbdcdesc.c"

    Building file: "../Library/usblib/device/usbdaudio.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/device/usbdaudio.d_raw" --obj_directory="Library/usblib/device" "../Library/usblib/device/usbdaudio.c"
    Finished building: "../Library/usblib/device/usbdaudio.c"

    Building file: "../Library/usblib/device/usbdbulk.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/device/usbdbulk.d_raw" --obj_directory="Library/usblib/device" "../Library/usblib/device/usbdbulk.c"
    Finished building: "../Library/usblib/device/usbdbulk.c"

    Building file: "../Library/usblib/device/usbdconfig.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/device/usbdconfig.d_raw" --obj_directory="Library/usblib/device" "../Library/usblib/device/usbdconfig.c"
    Finished building: "../Library/usblib/device/usbdconfig.c"

    Building file: "../Library/usblib/device/usbdhandler.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/device/usbdhandler.d_raw" --obj_directory="Library/usblib/device" "../Library/usblib/device/usbdhandler.c"
    Finished building: "../Library/usblib/device/usbdhandler.c"

    Building file: "../Library/usblib/device/usbddfu-rt.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/device/usbddfu-rt.d_raw" --obj_directory="Library/usblib/device" "../Library/usblib/device/usbddfu-rt.c"
    Finished building: "../Library/usblib/device/usbddfu-rt.c"

    Building file: "../Library/usblib/device/usbdcomp.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/device/usbdcomp.d_raw" --obj_directory="Library/usblib/device" "../Library/usblib/device/usbdcomp.c"
    "../Library/usblib/device/usbdcomp.c", line 1040: warning #552-D: variable "ui32FixINT" was set but never used
    Finished building: "../Library/usblib/device/usbdcomp.c"

    Building file: "../Library/driverlib/usb.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/driverlib/usb.d_raw" --obj_directory="Library/driverlib" "../Library/driverlib/usb.c"
    Finished building: "../Library/driverlib/usb.c"

    Building file: "../Library/usblib/device/usbdhidgamepad.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/device/usbdhidgamepad.d_raw" --obj_directory="Library/usblib/device" "../Library/usblib/device/usbdhidgamepad.c"
    Finished building: "../Library/usblib/device/usbdhidgamepad.c"

    Building file: "../Library/usblib/device/usbdcdc.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/device/usbdcdc.d_raw" --obj_directory="Library/usblib/device" "../Library/usblib/device/usbdcdc.c"
    Finished building: "../Library/usblib/device/usbdcdc.c"

    Building file: "../Library/usblib/device/usbdhidmouse.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/device/usbdhidmouse.d_raw" --obj_directory="Library/usblib/device" "../Library/usblib/device/usbdhidmouse.c"
    Finished building: "../Library/usblib/device/usbdhidmouse.c"

    Building file: "../Library/usblib/device/usbdhidkeyb.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/device/usbdhidkeyb.d_raw" --obj_directory="Library/usblib/device" "../Library/usblib/device/usbdhidkeyb.c"
    Finished building: "../Library/usblib/device/usbdhidkeyb.c"

    Building file: "../Library/usblib/host/usbhhidkeyboard.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/host/usbhhidkeyboard.d_raw" --obj_directory="Library/usblib/host" "../Library/usblib/host/usbhhidkeyboard.c"
    Finished building: "../Library/usblib/host/usbhhidkeyboard.c"

    Building file: "../Library/usblib/host/usbhhid.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/host/usbhhid.d_raw" --obj_directory="Library/usblib/host" "../Library/usblib/host/usbhhid.c"
    Finished building: "../Library/usblib/host/usbhhid.c"

    Building file: "../Library/usblib/host/usbhhidmouse.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/host/usbhhidmouse.d_raw" --obj_directory="Library/usblib/host" "../Library/usblib/host/usbhhidmouse.c"
    Finished building: "../Library/usblib/host/usbhhidmouse.c"

    Building file: "../Library/usblib/device/usbdhid.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/device/usbdhid.d_raw" --obj_directory="Library/usblib/device" "../Library/usblib/device/usbdhid.c"
    Finished building: "../Library/usblib/device/usbdhid.c"

    Building file: "../Library/usblib/host/usbhaudio.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/host/usbhaudio.d_raw" --obj_directory="Library/usblib/host" "../Library/usblib/host/usbhaudio.c"
    Finished building: "../Library/usblib/host/usbhaudio.c"

    Building file: "../Library/usblib/device/usbdenum.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/device/usbdenum.d_raw" --obj_directory="Library/usblib/device" "../Library/usblib/device/usbdenum.c"
    Finished building: "../Library/usblib/device/usbdenum.c"

    Building file: "../Library/usblib/host/usbhmsc.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/host/usbhmsc.d_raw" --obj_directory="Library/usblib/host" "../Library/usblib/host/usbhmsc.c"
    Finished building: "../Library/usblib/host/usbhmsc.c"

    Building file: "../Library/usblib/host/usbhscsi.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/host/usbhscsi.d_raw" --obj_directory="Library/usblib/host" "../Library/usblib/host/usbhscsi.c"
    Finished building: "../Library/usblib/host/usbhscsi.c"

    Building file: "../Library/usblib/host/usbhhub.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/host/usbhhub.d_raw" --obj_directory="Library/usblib/host" "../Library/usblib/host/usbhhub.c"
    Finished building: "../Library/usblib/host/usbhhub.c"

    Building file: "../Library/usblib/usbdesc.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/usbdesc.d_raw" --obj_directory="Library/usblib" "../Library/usblib/usbdesc.c"
    Finished building: "../Library/usblib/usbdesc.c"

    Building file: "../Library/usblib/device/usbdmsc.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/device/usbdmsc.d_raw" --obj_directory="Library/usblib/device" "../Library/usblib/device/usbdmsc.c"
    Finished building: "../Library/usblib/device/usbdmsc.c"

    Building file: "../Library/usblib/usbkeyboardmap.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/usbkeyboardmap.d_raw" --obj_directory="Library/usblib" "../Library/usblib/usbkeyboardmap.c"
    Finished building: "../Library/usblib/usbkeyboardmap.c"

    Building file: "../Library/usblib/usbbuffer.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/usbbuffer.d_raw" --obj_directory="Library/usblib" "../Library/usblib/usbbuffer.c"
    Finished building: "../Library/usblib/usbbuffer.c"

    Building file: "../Library/usblib/usbtick.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/usbtick.d_raw" --obj_directory="Library/usblib" "../Library/usblib/usbtick.c"
    Finished building: "../Library/usblib/usbtick.c"

    Building file: "../Library/usblib/usbringbuf.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/usbringbuf.d_raw" --obj_directory="Library/usblib" "../Library/usblib/usbringbuf.c"
    Finished building: "../Library/usblib/usbringbuf.c"

    Building file: "../Library/usblib/usbulpi.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/usbulpi.d_raw" --obj_directory="Library/usblib" "../Library/usblib/usbulpi.c"
    Finished building: "../Library/usblib/usbulpi.c"

    Building file: "../Library/usblib/usbmode.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/usbmode.d_raw" --obj_directory="Library/usblib" "../Library/usblib/usbmode.c"
    Finished building: "../Library/usblib/usbmode.c"

    Building file: "../Shared/shGlobals.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Shared/shGlobals.d_raw" --obj_directory="Shared" "../Shared/shGlobals.c"
    Finished building: "../Shared/shGlobals.c"

    Building file: "../Shared/shTypes.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Shared/shTypes.d_raw" --obj_directory="Shared" "../Shared/shTypes.c"
    Finished building: "../Shared/shTypes.c"

    Building file: "../USB/usb_serial_structs.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="USB/usb_serial_structs.d_raw" --obj_directory="USB" "../USB/usb_serial_structs.c"
    Finished building: "../USB/usb_serial_structs.c"

    Building file: "../Library/usblib/usbdma.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/usbdma.d_raw" --obj_directory="Library/usblib" "../Library/usblib/usbdma.c"
    Finished building: "../Library/usblib/usbdma.c"

    Building file: "../Scanner/Point.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Scanner/Point.d_raw" --obj_directory="Scanner" "../Scanner/Point.c"
    "C:\Dev\PC\Cirris\CommonHardware\Software\Common\..\..\..\Easywire\PC\CXSpecific\Enums\enumTCommandResponse.txt", line 11: warning #1-D: last line of file ends without a newline
    Finished building: "../Scanner/Point.c"

    Building file: "../Library/usblib/host/usbhostenum.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Analog" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Boot" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Buffer" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Commands" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Common" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Controller" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/DataStreams" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/GPIO" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HAL" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Hardware" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/HighVoltage" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Memory" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Scanner" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Shared" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/USB" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/inc" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/include" --include_path="C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib" --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="Library/usblib/host/usbhostenum.d_raw" --obj_directory="Library/usblib/host" "../Library/usblib/host/usbhostenum.c"
    Finished building: "../Library/usblib/host/usbhostenum.c"

    Building target: "common_hardware.out"
    Invoking: Arm Linker
    "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --advice:power="3,4,5.2,9,10,12.1" --advice:power_severity=remark --define=ccs="ccs" --define=TARGET_IS_TM4C123_RB1 --define=PART_TM4C1233H6PGE -g --c99 --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi -z -m"common_hardware.map" --heap_size=0 --stack_size=512 -i"C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/lib" -i"C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/include" -i"C:/Dev/PC/Cirris/CommonHardware/Software/Library/ti-cgt-arm_20.2.5.LTS/lib" --reread_libs --diag_wrap=off --display_error_number --verbose_diagnostics --warn_sections --xml_link_info="common_hardware_linkInfo.xml" --rom_model -o "common_hardware.out" "./startup_ccs.obj" "./Analog/aADC.obj" "./Analog/aDAC.obj" "./Boot/btDriverInit.obj" "./Buffer/bBuffer.obj" "./Commands/cAnteriorBoot.obj" "./Commands/cAnteriorMeasure.obj" "./Commands/cAnteriorScanner.obj" "./Commands/cSearch.obj" "./Commands/cSelfTest.obj" "./Common/main.obj" "./Common/xAnteriorCommandProcessor.obj" "./Common/xEmbCrcCalc.obj" "./Common/xErrorHandler.obj" "./Common/xFixedPoint.obj" "./Common/xGlobals.obj" "./Common/xPosteriorCommandProcessor.obj" "./Common/xSearch.obj" "./Common/xSelfTest.obj" "./Common/xSemaphore.obj" "./Common/xTimer.obj" "./Common/xTypes.obj" "./Common/xUtilities.obj" "./Controller/AssortedCommands.obj" "./Controller/CalibrationData.obj" "./Controller/Measure.obj" "./Controller/MeasureCapacitance.obj" "./Controller/MeasureInductance.obj" "./Controller/MeasureResistance.obj" "./DataStreams/dsStream.obj" "./GPIO/gpioPin.obj" "./GPIO/gpioPort.obj" "./HAL/TIVA/etest_halTIVA_ADC.obj" "./HAL/TIVA/etest_halTIVA_I2C.obj" "./HAL/TIVA/etest_halTIVA_SPI.obj" "./HAL/TIVA/etest_halTIVA_Timer.obj" "./HAL/TIVA/etest_halTIVA_UART.obj" "./HAL/TIVA/halTIVA_ADC.obj" "./HAL/TIVA/halTIVA_DMA.obj" "./HAL/TIVA/halTIVA_DebugBits.obj" "./HAL/TIVA/halTIVA_I2C.obj" "./HAL/TIVA/halTIVA_IAP.obj" "./HAL/TIVA/halTIVA_PWM.obj" "./HAL/TIVA/halTIVA_Pin.obj" "./HAL/TIVA/halTIVA_Port.obj" "./HAL/TIVA/halTIVA_SPI.obj" "./HAL/TIVA/halTIVA_System.obj" "./HAL/TIVA/halTIVA_Timer.obj" "./HAL/TIVA/halTIVA_UART.obj" "./HAL/TIVA/halTIVA_USB.obj" "./HAL/ecAssert.obj" "./HAL/ecPrintMessages.obj" "./HAL/ecTestFramework.obj" "./HAL/halDAC7563.obj" "./HAL/halHDC1050.obj" "./HAL/halMCP4725.obj" "./HAL/xStringUtils.obj" "./Hardware/hwAFE.obj" "./Hardware/hwCurrentSource.obj" "./Hardware/hwLatch.obj" "./Hardware/hwRelay.obj" "./Hardware/hwSourceSinkSense.obj" "./HighVoltage/EnvelopeRegulator.obj" "./HighVoltage/HVSupply.obj" "./HighVoltage/HighVoltageRegulator.obj" "./HighVoltage/SineGenerator.obj" "./HighVoltage/SineTable.obj" "./Library/driverlib/adc.obj" "./Library/driverlib/aes.obj" "./Library/driverlib/can.obj" "./Library/driverlib/comp.obj" "./Library/driverlib/cpu.obj" "./Library/driverlib/crc.obj" "./Library/driverlib/des.obj" "./Library/driverlib/eeprom.obj" "./Library/driverlib/emac.obj" "./Library/driverlib/epi.obj" "./Library/driverlib/epi_workaround_ccs.obj" "./Library/driverlib/flash.obj" "./Library/driverlib/fpu.obj" "./Library/driverlib/gpio.obj" "./Library/driverlib/hibernate.obj" "./Library/driverlib/i2c.obj" "./Library/driverlib/interrupt.obj" "./Library/driverlib/lcd.obj" "./Library/driverlib/mpu.obj" "./Library/driverlib/onewire.obj" "./Library/driverlib/pwm.obj" "./Library/driverlib/qei.obj" "./Library/driverlib/shamd5.obj" "./Library/driverlib/ssi.obj" "./Library/driverlib/sw_crc.obj" "./Library/driverlib/sysctl.obj" "./Library/driverlib/sysexc.obj" "./Library/driverlib/systick.obj" "./Library/driverlib/timer.obj" "./Library/driverlib/uart.obj" "./Library/driverlib/udma.obj" "./Library/driverlib/usb.obj" "./Library/driverlib/watchdog.obj" "./Library/usblib/device/usbdaudio.obj" "./Library/usblib/device/usbdbulk.obj" "./Library/usblib/device/usbdcdc.obj" "./Library/usblib/device/usbdcdesc.obj" "./Library/usblib/device/usbdcomp.obj" "./Library/usblib/device/usbdconfig.obj" "./Library/usblib/device/usbddfu-rt.obj" "./Library/usblib/device/usbdenum.obj" "./Library/usblib/device/usbdhandler.obj" "./Library/usblib/device/usbdhid.obj" "./Library/usblib/device/usbdhidgamepad.obj" "./Library/usblib/device/usbdhidkeyb.obj" "./Library/usblib/device/usbdhidmouse.obj" "./Library/usblib/device/usbdmsc.obj" "./Library/usblib/host/usbhaudio.obj" "./Library/usblib/host/usbhhid.obj" "./Library/usblib/host/usbhhidkeyboard.obj" "./Library/usblib/host/usbhhidmouse.obj" "./Library/usblib/host/usbhhub.obj" "./Library/usblib/host/usbhmsc.obj" "./Library/usblib/host/usbhostenum.obj" "./Library/usblib/host/usbhscsi.obj" "./Library/usblib/usbbuffer.obj" "./Library/usblib/usbdesc.obj" "./Library/usblib/usbdma.obj" "./Library/usblib/usbkeyboardmap.obj" "./Library/usblib/usbmode.obj" "./Library/usblib/usbringbuf.obj" "./Library/usblib/usbtick.obj" "./Library/usblib/usbulpi.obj" "./Scanner/Point.obj" "./Shared/shGlobals.obj" "./Shared/shTypes.obj" "./USB/usb_serial_structs.obj" "../common_hardware.cmd" "../Library/driverlib/ccs/Debug/driverlib.lib" "../Library/usblib/ccs/Debug/usblib.lib" -l"C:/Dev/PC/Cirris/CommonHardware/Software/Library/driverlib/ccs/Debug/driverlib.lib" -l"C:/Dev/PC/Cirris/CommonHardware/Software/Library/usblib/ccs/Debug/usblib.lib" -llibc.a ../Library/usblib/ewarm/Exe/usblib.a ../Library/usblib/gcc/libusb.a
    <Linking>
    Finished building target: "common_hardware.out"

    "C:/ti/ccs1110/ccs/utils/tiobj2bin/tiobj2bin" "common_hardware.out" "common_hardware.bin" "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armofd" "C:/ti/ccs1110/ccs/tools/compiler/ti-cgt-arm_20.2.6.LTS/bin/armhex" "C:/ti/ccs1110/ccs/utils/tiobj2bin/mkhex4bin"

    **** Build Finished ****

  • The messages indicate a successful build. Perhaps removing those paths were all that was needed. Now the question is if the issue happens again when you merge back to the repo. let me know if it happens again.

  • will do. I should be merging code back in in the next few days.