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.

RM57L843: Warning related to auto_init: #10278-D LOAD placement specified for section

Part Number: RM57L843

Hello,

We don't want to link any library to our code, thus I have implemented my own auto_init, zero_init, decompress_lzss, decompress_none, memset and memcpy services based on TI implementation.
zero_init, decompress_lzss, decompress_none have section attribute ".text:decompress:ZI", ".text:decompress:lzss" and ".text:decompress:none" respectively.

My implementation works fine, except that if I do not put memset and memcpy in the same file of auto_init, I get several of the following warning:

#10278-D LOAD placement specified for section ".data:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.
Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").

What is wrong? Could you help?

Best regards,

  • Please put the linker command file and the linker map file in a zip file, then attach that zip file to your next post.

    Thanks and regards,

    -George

  • Hello, 

    Best regards,

    linker_files.zip

  • I presume membas.c is the file where ...

    I have implemented my own auto_init, zero_init, decompress_lzss, decompress_none, memset and memcpy

    For that file, please follow the directions in the article How to Submit a Compiler Test Case.

    Thanks and regards,

    -George

  • Thanks George.

    I sent to you the information you requested in a private message.

    The extension for the membas file is cpp. I do know it can be a problem for the compiler or not.

    Thanks and regards,

    Marcio.

  • When I look at the linker map file you I sent I see these lines ...

    .data      0    080097f8    0000002c     UNINITIALIZED
                      080097f8    0000001c     appl.obj (.data)
                      08009814    00000008     appl.obj (.data:autoInitBuffer)
                      0800981c    00000008     membas.obj (.data)

    The last line says membas.obj has a .data input section.  I don't know why.  That is why I asked for a test case that lets me build it.  When I build the file you sent by private message, no .data input section gets created.  I cannot explain that.  Are you sure you sent the right file and build options?

    Thanks and regards,

    -George

  • Hello George, 

    I am sure I´ve sent you the right file. 

    membas.cpp contains several functions and also declares data. Would it be the problem?

    As the software has evolved since I opened this thread, the map file has changed. Following is the map file corresponding to the today's .pp file, "membas.obj (.data)" still there.

    Best regards, 

     RM57LaunchPad.zip

  • I see why membas.obj has .data.  But that doesn't help me as much as I thought it would.  I want to pursue two different ideas at once.

    Idea #1 ... The code supplied with the compiler which does the following ...

    auto_init, zero_init, decompress_lzss, decompress_none, memset and memcpy

    ... has always been implemented in C code.  (Well, very old compilers implemented it in assembly.)   This is the first I've heard of it being implemented in C++.  While I can't specifically say why that would fail, I'm still suspicious.  Please implement all of this in C.  That might be as simple as renaming the file extension from .cpp to .c.

    Idea #2 ...  I somehow overlooked this from your first post ...

    I get several of the following warning

    I want to see all of these diagnostics.  I presume your build is organized as a Code Composer Studio project.  Please rebuild the entire project.  One way to do that is to right-click on the name of the project and select Rebuild Project.  Then save the contents of the Console (not Problems) view to a text file.  Use the icon named Copy Build Log.  When you name the log file, be sure to use the file extension .txt.  Please attach that text file to your next post.

    Thanks and regards,

    -George

  • Hello George

    The Idea #1 worked! (more or less...)

    Just changing autoinit file to ".C" (and make small adjustments) does NOT remove the build warnings.

    But moving MemSet and MemCopy to a ".C" file (mem2bas.c) remove all warnings, even with autoinit.cpp. 

    Declaring MemSet and MemCopy as 'extern "C"' in the header file of membas.cpp, does NOT remove the warnings, even when autoinit file in ".C".

    It seems awkward to me.

    If I change the names of the following services the compiler raise "undefined symbol" error:   

    extern "C" void __TI_zero_init(pointer_to_const_t inbuf, pointer_t outbuf);
    extern "C" void __TI_decompress_lzss(pointer_to_const_t inbuf, pointer_t outbuf);
    extern "C" void __TI_decompress_none(pointer_to_const_t inbuf, pointer_t outbuf);

    The compiler does not care about the name of auto_init.

    Attached are the contents of the Console with CPP file, with autoinit.c and with MemSet and MemCopy in a ".C" file.

    Best regards,

    **** Build of configuration Debug for project RM57LaunchPad ****
    
    "C:\\ti\\ccs1220\\ccs\\utils\\bin\\gmake" -k -j 8 all -O 
     
    Building file: "../KERNEL/source/adc1bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/adc1bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/adc1bas.cpp"
    Finished building: "../KERNEL/source/adc1bas.cpp"
     
    Building file: "../KERNEL/source/adc2bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/adc2bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/adc2bas.cpp"
    Finished building: "../KERNEL/source/adc2bas.cpp"
     
    Building file: "../APPL/appl.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="APPL/appl.d_raw" --obj_directory="APPL"  "../APPL/appl.cpp"
    "../APPL/appl.cpp", line 41: warning #179-D: variable "ApplTaskCount" was declared but never referenced
    "../APPL/appl.cpp", line 62: warning #179-D: variable "autoInitBuffer" was declared but never referenced
    "../APPL/appl.cpp", line 147: warning #179-D: function "MyCtor" was declared but never referenced
    "../APPL/appl.cpp", line 153: warning #179-D: function "MyCCtor" was declared but never referenced
    Finished building: "../APPL/appl.cpp"
     
    Building file: "../KERNEL/source/autoinitbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/autoinitbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/autoinitbas.cpp"
    Finished building: "../KERNEL/source/autoinitbas.cpp"
     
    Building file: "../KERNEL/source/bdbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bdbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bdbas.cpp"
    Finished building: "../KERNEL/source/bdbas.cpp"
     
    Building file: "../KERNEL/source/bacbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bacbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bacbas.cpp"
    Finished building: "../KERNEL/source/bacbas.cpp"
     
    Building file: "../KERNEL/source/bootbas.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bootbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bootbas.c"
    Finished building: "../KERNEL/source/bootbas.c"
     
    Building file: "../KERNEL/source/corebas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/corebas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/corebas.asm"
    Finished building: "../KERNEL/source/corebas.asm"
     
    Building file: "../KERNEL/source/bpporbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bpporbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bpporbas.cpp"
    Finished building: "../KERNEL/source/bpporbas.cpp"
     
    Building file: "../KERNEL/source/bpposbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bpposbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bpposbas.cpp"
    Finished building: "../KERNEL/source/bpposbas.cpp"
     
    Building file: "../KERNEL/source/calbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/calbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/calbas.cpp"
    Finished building: "../KERNEL/source/calbas.cpp"
     
    Building file: "../KERNEL/source/canabas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/canabas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/canabas.cpp"
    Finished building: "../KERNEL/source/canabas.cpp"
     
    Building file: "../KERNEL/source/canbbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/canbbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/canbbas.cpp"
    Finished building: "../KERNEL/source/canbbas.cpp"
     
    Building file: "../KERNEL/source/cancbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/cancbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/cancbas.cpp"
    Finished building: "../KERNEL/source/cancbas.cpp"
     
    Building file: "../KERNEL/source/consolebas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/consolebas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/consolebas.cpp"
    Finished building: "../KERNEL/source/consolebas.cpp"
     
    Building file: "../KERNEL/source/cxxabibas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/cxxabibas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/cxxabibas.cpp"
    Finished building: "../KERNEL/source/cxxabibas.cpp"
     
    Building file: "../KERNEL/source/crcbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/crcbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/crcbas.cpp"
    Finished building: "../KERNEL/source/crcbas.cpp"
     
    Building file: "../KERNEL/source/emifbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/emifbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/emifbas.cpp"
    Finished building: "../KERNEL/source/emifbas.cpp"
     
    Building file: "../KERNEL/source/emacbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/emacbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/emacbas.cpp"
    Finished building: "../KERNEL/source/emacbas.cpp"
     
    Building file: "../KERNEL/source/dccbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/dccbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/dccbas.cpp"
    Finished building: "../KERNEL/source/dccbas.cpp"
     
    Building file: "../KERNEL/source/diagbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/diagbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/diagbas.cpp"
    Finished building: "../KERNEL/source/diagbas.cpp"
     
    Building file: "../KERNEL/source/dwdbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/dwdbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/dwdbas.cpp"
    Finished building: "../KERNEL/source/dwdbas.cpp"
     
    Building file: "../KERNEL/source/epcbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/epcbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/epcbas.cpp"
    Finished building: "../KERNEL/source/epcbas.cpp"
     
    Building file: "../KERNEL/source/erfabas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/erfabas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/erfabas.cpp"
    "../KERNEL/source/erfabas.cpp", line 164: warning #112-D: statement is unreachable
    "../KERNEL/source/erfabas.cpp", line 238: warning #112-D: statement is unreachable
    Finished building: "../KERNEL/source/erfabas.cpp"
     
    Building file: "../KERNEL/source/esmbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/esmbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/esmbas.cpp"
    Finished building: "../KERNEL/source/esmbas.cpp"
     
    Building file: "../KERNEL/source/etpwmbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/etpwmbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/etpwmbas.cpp"
    Finished building: "../KERNEL/source/etpwmbas.cpp"
     
    Building file: "../KERNEL/source/gpiobas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/gpiobas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/gpiobas.cpp"
    Finished building: "../KERNEL/source/gpiobas.cpp"
     
    Building file: "../KERNEL/source/idivbas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/idivbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/idivbas.asm"
    Finished building: "../KERNEL/source/idivbas.asm"
     
    Building file: "../KERNEL/source/het1bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/het1bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/het1bas.cpp"
    Finished building: "../KERNEL/source/het1bas.cpp"
     
    Building file: "../KERNEL/source/hmibas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/hmibas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/hmibas.cpp"
    Finished building: "../KERNEL/source/hmibas.cpp"
     
    Building file: "../KERNEL/source/i2cbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/i2cbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/i2cbas.cpp"
    Finished building: "../KERNEL/source/i2cbas.cpp"
     
    Building file: "../KERNEL/source/intvecsbas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/intvecsbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/intvecsbas.asm"
    Finished building: "../KERNEL/source/intvecsbas.asm"
     
    Building file: "../KERNEL/source/gtarbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/gtarbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/gtarbas.cpp"
    Finished building: "../KERNEL/source/gtarbas.cpp"
     
    Building file: "../KERNEL/source/het2bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/het2bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/het2bas.cpp"
    Finished building: "../KERNEL/source/het2bas.cpp"
     
    Building file: "../KERNEL/source/mainbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/mainbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/mainbas.cpp"
    Finished building: "../KERNEL/source/mainbas.cpp"
     
    Building file: "../KERNEL/source/mpubas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/mpubas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/mpubas.asm"
    Finished building: "../KERNEL/source/mpubas.asm"
     
    Building file: "../KERNEL/source/membas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/membas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/membas.cpp"
    Finished building: "../KERNEL/source/membas.cpp"
     
    Building file: "../KERNEL/source/newbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/newbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/newbas.cpp"
    Finished building: "../KERNEL/source/newbas.cpp"
     
    Building file: "../KERNEL/source/oscinbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/oscinbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/oscinbas.cpp"
    Finished building: "../KERNEL/source/oscinbas.cpp"
     
    Building file: "../KERNEL/source/pinmuxbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/pinmuxbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/pinmuxbas.cpp"
    Finished building: "../KERNEL/source/pinmuxbas.cpp"
     
    Building file: "../KERNEL/source/rtibas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/rtibas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/rtibas.cpp"
    Finished building: "../KERNEL/source/rtibas.cpp"
     
    Building file: "../KERNEL/source/miscbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/miscbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/miscbas.cpp"
    Finished building: "../KERNEL/source/miscbas.cpp"
     
    Building file: "../KERNEL/source/sciabas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/sciabas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/sciabas.cpp"
    Finished building: "../KERNEL/source/sciabas.cpp"
     
    Building file: "../KERNEL/source/scibbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/scibbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/scibbas.cpp"
    Finished building: "../KERNEL/source/scibbas.cpp"
     
    Building file: "../KERNEL/source/spiabas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/spiabas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/spiabas.cpp"
    Finished building: "../KERNEL/source/spiabas.cpp"
     
    Building file: "../KERNEL/source/selftest1bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/selftest1bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/selftest1bas.cpp"
    Finished building: "../KERNEL/source/selftest1bas.cpp"
     
    Building file: "../KERNEL/source/selftest2bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/selftest2bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/selftest2bas.cpp"
    Finished building: "../KERNEL/source/selftest2bas.cpp"
     
    Building file: "../KERNEL/source/spibbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/spibbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/spibbas.cpp"
    Finished building: "../KERNEL/source/spibbas.cpp"
     
    Building file: "../KERNEL/source/spicbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/spicbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/spicbas.cpp"
    Finished building: "../KERNEL/source/spicbas.cpp"
     
    Building file: "../KERNEL/source/spidbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/spidbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/spidbas.cpp"
    Finished building: "../KERNEL/source/spidbas.cpp"
     
    Building file: "../KERNEL/source/stoptimerbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/stoptimerbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/stoptimerbas.cpp"
    Finished building: "../KERNEL/source/stoptimerbas.cpp"
     
    Building file: "../KERNEL/source/selftest3bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/selftest3bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/selftest3bas.cpp"
    Finished building: "../KERNEL/source/selftest3bas.cpp"
     
    Building file: "../KERNEL/source/typeinfobas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/typeinfobas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/typeinfobas.asm"
    Finished building: "../KERNEL/source/typeinfobas.asm"
     
    Building file: "../KERNEL/source/systembas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/systembas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/systembas.cpp"
    Finished building: "../KERNEL/source/systembas.cpp"
     
    Building file: "../KERNEL/source/stringbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/stringbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/stringbas.cpp"
    Finished building: "../KERNEL/source/stringbas.cpp"
     
    Building file: "../KERNEL/source/tabebas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/tabebas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/tabebas.cpp"
    Finished building: "../KERNEL/source/tabebas.cpp"
     
    Building file: "../KERNEL/source/tverbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/tverbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/tverbas.cpp"
    Finished building: "../KERNEL/source/tverbas.cpp"
     
    Building file: "../KERNEL/source/timerbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/timerbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/timerbas.cpp"
    "../KERNEL/source/timerbas.cpp", line 94: warning #552-D: variable "TimeoutTaskLoopTicksCounter" was set but never used
    "../KERNEL/source/timerbas.cpp", line 95: warning #552-D: variable "MarkTicksCPUTimersTest" was set but never used
    Finished building: "../KERNEL/source/timerbas.cpp"
     
    Building file: "../KERNEL/source/vimbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/vimbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/vimbas.cpp"
    Finished building: "../KERNEL/source/vimbas.cpp"
     
    Building target: "RM57LaunchPad.out"
    Invoking: Arm Linker
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi -z -m"RM57LaunchPad.map" --heap_size=0x800 --stack_size=0x800 --reread_libs --diag_wrap=off --display_error_number --issue_remarks --warn_sections --xml_link_info="RM57LaunchPad_linkInfo.xml" --rom_model -o "RM57LaunchPad.out" "./APPL/appl.obj" "./KERNEL/source/adc1bas.obj" "./KERNEL/source/adc2bas.obj" "./KERNEL/source/autoinitbas.obj" "./KERNEL/source/bacbas.obj" "./KERNEL/source/bdbas.obj" "./KERNEL/source/bootbas.obj" "./KERNEL/source/bpporbas.obj" "./KERNEL/source/bpposbas.obj" "./KERNEL/source/calbas.obj" "./KERNEL/source/canabas.obj" "./KERNEL/source/canbbas.obj" "./KERNEL/source/cancbas.obj" "./KERNEL/source/consolebas.obj" "./KERNEL/source/corebas.obj" "./KERNEL/source/crcbas.obj" "./KERNEL/source/cxxabibas.obj" "./KERNEL/source/dccbas.obj" "./KERNEL/source/diagbas.obj" "./KERNEL/source/dwdbas.obj" "./KERNEL/source/emacbas.obj" "./KERNEL/source/emifbas.obj" "./KERNEL/source/epcbas.obj" "./KERNEL/source/erfabas.obj" "./KERNEL/source/esmbas.obj" "./KERNEL/source/etpwmbas.obj" "./KERNEL/source/gpiobas.obj" "./KERNEL/source/gtarbas.obj" "./KERNEL/source/het1bas.obj" "./KERNEL/source/het2bas.obj" "./KERNEL/source/hmibas.obj" "./KERNEL/source/i2cbas.obj" "./KERNEL/source/idivbas.obj" "./KERNEL/source/intvecsbas.obj" "./KERNEL/source/mainbas.obj" "./KERNEL/source/membas.obj" "./KERNEL/source/miscbas.obj" "./KERNEL/source/mpubas.obj" "./KERNEL/source/newbas.obj" "./KERNEL/source/oscinbas.obj" "./KERNEL/source/pinmuxbas.obj" "./KERNEL/source/rtibas.obj" "./KERNEL/source/sciabas.obj" "./KERNEL/source/scibbas.obj" "./KERNEL/source/selftest1bas.obj" "./KERNEL/source/selftest2bas.obj" "./KERNEL/source/selftest3bas.obj" "./KERNEL/source/spiabas.obj" "./KERNEL/source/spibbas.obj" "./KERNEL/source/spicbas.obj" "./KERNEL/source/spidbas.obj" "./KERNEL/source/stoptimerbas.obj" "./KERNEL/source/stringbas.obj" "./KERNEL/source/systembas.obj" "./KERNEL/source/tabebas.obj" "./KERNEL/source/timerbas.obj" "./KERNEL/source/tverbas.obj" "./KERNEL/source/typeinfobas.obj" "./KERNEL/source/vimbas.obj" "../linkRM57launchpad.cmd"  
    <Linking>
    warning #10278-D: LOAD placement specified for section ".bss:CheckInCounter:diagbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:OffsetLocationRAM:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:OffsetLocationRAMCopy:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:IndexBlockROM:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:IndexBlockROMCopy:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".data:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:MarkCheckInCounter:diagbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:diagbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:timerbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:SciA:hmibas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:sciabas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:ReadyQueue:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:WaitList:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:LdlControlWaitList:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:MasterBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:SlaveBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:text:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".data:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BdBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BufferConsole:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BufferBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:MyBoolArray:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:text:esmbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BufferConsole:esmbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:CheckInCounter:diagbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:OffsetLocationRAM:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:OffsetLocationRAMCopy:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:IndexBlockROM:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:IndexBlockROMCopy:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".data:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:MarkCheckInCounter:diagbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:diagbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:timerbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:SciA:hmibas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:sciabas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:ReadyQueue:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:WaitList:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:LdlControlWaitList:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:MasterBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:SlaveBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:text:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".data:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BdBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BufferConsole:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BufferBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:MyBoolArray:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:text:esmbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BufferConsole:esmbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    Finished building target: "RM57LaunchPad.out"
     
    
    **** Build Finished ****
    

    **** Build of configuration Debug for project RM57LaunchPad ****
    
    "C:\\ti\\ccs1220\\ccs\\utils\\bin\\gmake" -k -j 8 all -O 
     
    Building file: "../KERNEL/source/adc1bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/adc1bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/adc1bas.cpp"
    Finished building: "../KERNEL/source/adc1bas.cpp"
     
    Building file: "../APPL/appl.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="APPL/appl.d_raw" --obj_directory="APPL"  "../APPL/appl.cpp"
    "../APPL/appl.cpp", line 41: warning #179-D: variable "ApplTaskCount" was declared but never referenced
    "../APPL/appl.cpp", line 62: warning #179-D: variable "autoInitBuffer" was declared but never referenced
    "../APPL/appl.cpp", line 147: warning #179-D: function "MyCtor" was declared but never referenced
    "../APPL/appl.cpp", line 153: warning #179-D: function "MyCCtor" was declared but never referenced
    Finished building: "../APPL/appl.cpp"
     
    Building file: "../KERNEL/source/adc2bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/adc2bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/adc2bas.cpp"
    Finished building: "../KERNEL/source/adc2bas.cpp"
     
    Building file: "../KERNEL/source/autoinitbas.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/autoinitbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/autoinitbas.c"
    Finished building: "../KERNEL/source/autoinitbas.c"
     
    Building file: "../KERNEL/source/bdbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bdbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bdbas.cpp"
    Finished building: "../KERNEL/source/bdbas.cpp"
     
    Building file: "../KERNEL/source/bacbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bacbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bacbas.cpp"
    Finished building: "../KERNEL/source/bacbas.cpp"
     
    Building file: "../KERNEL/source/bootbas.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bootbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bootbas.c"
    Finished building: "../KERNEL/source/bootbas.c"
     
    Building file: "../KERNEL/source/bpporbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bpporbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bpporbas.cpp"
    Finished building: "../KERNEL/source/bpporbas.cpp"
     
    Building file: "../KERNEL/source/canabas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/canabas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/canabas.cpp"
    Finished building: "../KERNEL/source/canabas.cpp"
     
    Building file: "../KERNEL/source/calbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/calbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/calbas.cpp"
    Finished building: "../KERNEL/source/calbas.cpp"
     
    Building file: "../KERNEL/source/canbbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/canbbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/canbbas.cpp"
    Finished building: "../KERNEL/source/canbbas.cpp"
     
    Building file: "../KERNEL/source/bpposbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bpposbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bpposbas.cpp"
    Finished building: "../KERNEL/source/bpposbas.cpp"
     
    Building file: "../KERNEL/source/cancbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/cancbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/cancbas.cpp"
    Finished building: "../KERNEL/source/cancbas.cpp"
     
    Building file: "../KERNEL/source/corebas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/corebas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/corebas.asm"
    Finished building: "../KERNEL/source/corebas.asm"
     
    Building file: "../KERNEL/source/consolebas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/consolebas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/consolebas.cpp"
    Finished building: "../KERNEL/source/consolebas.cpp"
     
    Building file: "../KERNEL/source/crcbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/crcbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/crcbas.cpp"
    Finished building: "../KERNEL/source/crcbas.cpp"
     
    Building file: "../KERNEL/source/cxxabibas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/cxxabibas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/cxxabibas.cpp"
    Finished building: "../KERNEL/source/cxxabibas.cpp"
     
    Building file: "../KERNEL/source/dccbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/dccbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/dccbas.cpp"
    Finished building: "../KERNEL/source/dccbas.cpp"
     
    Building file: "../KERNEL/source/diagbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/diagbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/diagbas.cpp"
    Finished building: "../KERNEL/source/diagbas.cpp"
     
    Building file: "../KERNEL/source/dwdbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/dwdbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/dwdbas.cpp"
    Finished building: "../KERNEL/source/dwdbas.cpp"
     
    Building file: "../KERNEL/source/emacbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/emacbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/emacbas.cpp"
    Finished building: "../KERNEL/source/emacbas.cpp"
     
    Building file: "../KERNEL/source/emifbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/emifbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/emifbas.cpp"
    Finished building: "../KERNEL/source/emifbas.cpp"
     
    Building file: "../KERNEL/source/epcbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/epcbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/epcbas.cpp"
    Finished building: "../KERNEL/source/epcbas.cpp"
     
    Building file: "../KERNEL/source/erfabas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/erfabas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/erfabas.cpp"
    "../KERNEL/source/erfabas.cpp", line 164: warning #112-D: statement is unreachable
    "../KERNEL/source/erfabas.cpp", line 238: warning #112-D: statement is unreachable
    Finished building: "../KERNEL/source/erfabas.cpp"
     
    Building file: "../KERNEL/source/etpwmbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/etpwmbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/etpwmbas.cpp"
    Finished building: "../KERNEL/source/etpwmbas.cpp"
     
    Building file: "../KERNEL/source/gpiobas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/gpiobas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/gpiobas.cpp"
    Finished building: "../KERNEL/source/gpiobas.cpp"
     
    Building file: "../KERNEL/source/esmbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/esmbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/esmbas.cpp"
    Finished building: "../KERNEL/source/esmbas.cpp"
     
    Building file: "../KERNEL/source/hmibas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/hmibas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/hmibas.cpp"
    Finished building: "../KERNEL/source/hmibas.cpp"
     
    Building file: "../KERNEL/source/gtarbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/gtarbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/gtarbas.cpp"
    Finished building: "../KERNEL/source/gtarbas.cpp"
     
    Building file: "../KERNEL/source/het1bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/het1bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/het1bas.cpp"
    Finished building: "../KERNEL/source/het1bas.cpp"
     
    Building file: "../KERNEL/source/het2bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/het2bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/het2bas.cpp"
    Finished building: "../KERNEL/source/het2bas.cpp"
     
    Building file: "../KERNEL/source/i2cbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/i2cbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/i2cbas.cpp"
    Finished building: "../KERNEL/source/i2cbas.cpp"
     
    Building file: "../KERNEL/source/idivbas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/idivbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/idivbas.asm"
    Finished building: "../KERNEL/source/idivbas.asm"
     
    Building file: "../KERNEL/source/intvecsbas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/intvecsbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/intvecsbas.asm"
    Finished building: "../KERNEL/source/intvecsbas.asm"
     
    Building file: "../KERNEL/source/mpubas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/mpubas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/mpubas.asm"
    Finished building: "../KERNEL/source/mpubas.asm"
     
    Building file: "../KERNEL/source/mainbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/mainbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/mainbas.cpp"
    Finished building: "../KERNEL/source/mainbas.cpp"
     
    Building file: "../KERNEL/source/newbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/newbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/newbas.cpp"
    Finished building: "../KERNEL/source/newbas.cpp"
     
    Building file: "../KERNEL/source/pinmuxbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/pinmuxbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/pinmuxbas.cpp"
    Finished building: "../KERNEL/source/pinmuxbas.cpp"
     
    Building file: "../KERNEL/source/oscinbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/oscinbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/oscinbas.cpp"
    Finished building: "../KERNEL/source/oscinbas.cpp"
     
    Building file: "../KERNEL/source/membas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/membas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/membas.cpp"
    Finished building: "../KERNEL/source/membas.cpp"
     
    Building file: "../KERNEL/source/miscbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/miscbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/miscbas.cpp"
    Finished building: "../KERNEL/source/miscbas.cpp"
     
    Building file: "../KERNEL/source/rtibas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/rtibas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/rtibas.cpp"
    Finished building: "../KERNEL/source/rtibas.cpp"
     
    Building file: "../KERNEL/source/scibbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/scibbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/scibbas.cpp"
    Finished building: "../KERNEL/source/scibbas.cpp"
     
    Building file: "../KERNEL/source/sciabas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/sciabas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/sciabas.cpp"
    Finished building: "../KERNEL/source/sciabas.cpp"
     
    Building file: "../KERNEL/source/spiabas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/spiabas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/spiabas.cpp"
    Finished building: "../KERNEL/source/spiabas.cpp"
     
    Building file: "../KERNEL/source/selftest3bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/selftest3bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/selftest3bas.cpp"
    Finished building: "../KERNEL/source/selftest3bas.cpp"
     
    Building file: "../KERNEL/source/selftest1bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/selftest1bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/selftest1bas.cpp"
    Finished building: "../KERNEL/source/selftest1bas.cpp"
     
    Building file: "../KERNEL/source/spibbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/spibbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/spibbas.cpp"
    Finished building: "../KERNEL/source/spibbas.cpp"
     
    Building file: "../KERNEL/source/spicbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/spicbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/spicbas.cpp"
    Finished building: "../KERNEL/source/spicbas.cpp"
     
    Building file: "../KERNEL/source/stoptimerbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/stoptimerbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/stoptimerbas.cpp"
    Finished building: "../KERNEL/source/stoptimerbas.cpp"
     
    Building file: "../KERNEL/source/spidbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/spidbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/spidbas.cpp"
    Finished building: "../KERNEL/source/spidbas.cpp"
     
    Building file: "../KERNEL/source/selftest2bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/selftest2bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/selftest2bas.cpp"
    Finished building: "../KERNEL/source/selftest2bas.cpp"
     
    Building file: "../KERNEL/source/stringbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/stringbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/stringbas.cpp"
    Finished building: "../KERNEL/source/stringbas.cpp"
     
    Building file: "../KERNEL/source/tabebas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/tabebas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/tabebas.cpp"
    Finished building: "../KERNEL/source/tabebas.cpp"
     
    Building file: "../KERNEL/source/systembas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/systembas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/systembas.cpp"
    Finished building: "../KERNEL/source/systembas.cpp"
     
    Building file: "../KERNEL/source/tverbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/tverbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/tverbas.cpp"
    Finished building: "../KERNEL/source/tverbas.cpp"
     
    Building file: "../KERNEL/source/typeinfobas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/typeinfobas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/typeinfobas.asm"
    Finished building: "../KERNEL/source/typeinfobas.asm"
     
    Building file: "../KERNEL/source/timerbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/timerbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/timerbas.cpp"
    "../KERNEL/source/timerbas.cpp", line 94: warning #552-D: variable "TimeoutTaskLoopTicksCounter" was set but never used
    "../KERNEL/source/timerbas.cpp", line 95: warning #552-D: variable "MarkTicksCPUTimersTest" was set but never used
    Finished building: "../KERNEL/source/timerbas.cpp"
     
    Building file: "../KERNEL/source/vimbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/vimbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/vimbas.cpp"
    Finished building: "../KERNEL/source/vimbas.cpp"
     
    Building target: "RM57LaunchPad.out"
    Invoking: Arm Linker
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi -z -m"RM57LaunchPad.map" --heap_size=0x800 --stack_size=0x800 --reread_libs --diag_wrap=off --display_error_number --issue_remarks --warn_sections --xml_link_info="RM57LaunchPad_linkInfo.xml" --rom_model -o "RM57LaunchPad.out" "./APPL/appl.obj" "./KERNEL/source/adc1bas.obj" "./KERNEL/source/adc2bas.obj" "./KERNEL/source/autoinitbas.obj" "./KERNEL/source/bacbas.obj" "./KERNEL/source/bdbas.obj" "./KERNEL/source/bootbas.obj" "./KERNEL/source/bpporbas.obj" "./KERNEL/source/bpposbas.obj" "./KERNEL/source/calbas.obj" "./KERNEL/source/canabas.obj" "./KERNEL/source/canbbas.obj" "./KERNEL/source/cancbas.obj" "./KERNEL/source/consolebas.obj" "./KERNEL/source/corebas.obj" "./KERNEL/source/crcbas.obj" "./KERNEL/source/cxxabibas.obj" "./KERNEL/source/dccbas.obj" "./KERNEL/source/diagbas.obj" "./KERNEL/source/dwdbas.obj" "./KERNEL/source/emacbas.obj" "./KERNEL/source/emifbas.obj" "./KERNEL/source/epcbas.obj" "./KERNEL/source/erfabas.obj" "./KERNEL/source/esmbas.obj" "./KERNEL/source/etpwmbas.obj" "./KERNEL/source/gpiobas.obj" "./KERNEL/source/gtarbas.obj" "./KERNEL/source/het1bas.obj" "./KERNEL/source/het2bas.obj" "./KERNEL/source/hmibas.obj" "./KERNEL/source/i2cbas.obj" "./KERNEL/source/idivbas.obj" "./KERNEL/source/intvecsbas.obj" "./KERNEL/source/mainbas.obj" "./KERNEL/source/membas.obj" "./KERNEL/source/miscbas.obj" "./KERNEL/source/mpubas.obj" "./KERNEL/source/newbas.obj" "./KERNEL/source/oscinbas.obj" "./KERNEL/source/pinmuxbas.obj" "./KERNEL/source/rtibas.obj" "./KERNEL/source/sciabas.obj" "./KERNEL/source/scibbas.obj" "./KERNEL/source/selftest1bas.obj" "./KERNEL/source/selftest2bas.obj" "./KERNEL/source/selftest3bas.obj" "./KERNEL/source/spiabas.obj" "./KERNEL/source/spibbas.obj" "./KERNEL/source/spicbas.obj" "./KERNEL/source/spidbas.obj" "./KERNEL/source/stoptimerbas.obj" "./KERNEL/source/stringbas.obj" "./KERNEL/source/systembas.obj" "./KERNEL/source/tabebas.obj" "./KERNEL/source/timerbas.obj" "./KERNEL/source/tverbas.obj" "./KERNEL/source/typeinfobas.obj" "./KERNEL/source/vimbas.obj" "../linkRM57launchpad.cmd"  
    <Linking>
    warning #10278-D: LOAD placement specified for section ".bss:CheckInCounter:diagbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:OffsetLocationRAM:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:OffsetLocationRAMCopy:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:IndexBlockROM:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:IndexBlockROMCopy:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".data:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:MarkCheckInCounter:diagbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:diagbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:timerbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:SciA:hmibas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:sciabas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:ReadyQueue:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:WaitList:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:LdlControlWaitList:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:MasterBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:SlaveBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:text:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".data:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BdBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BufferConsole:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BufferBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:MyBoolArray:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:text:esmbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BufferConsole:esmbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:CheckInCounter:diagbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:OffsetLocationRAM:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:OffsetLocationRAMCopy:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:IndexBlockROM:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:IndexBlockROMCopy:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".data:membas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:MarkCheckInCounter:diagbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:diagbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:timerbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:SciA:hmibas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:sciabas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:ReadyQueue:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:WaitList:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:LdlControlWaitList:gtarbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:MasterBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:SlaveBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:text:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".data:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BdBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BufferConsole:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BufferBAC:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:MyBoolArray:appl.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:text:esmbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    warning #10278-D: LOAD placement specified for section ".bss:BufferConsole:esmbas.obj". This section contains decompression routines required for linker generated copy tables and C/C++ auto-initialization.  Must ensure that this section is copied to run address before the C/C++ boot code is executed or is placed with single allocation specifier (ex. "> MEMORY").
    Finished building target: "RM57LaunchPad.out"
     
    
    **** Build Finished ****
    
    **** Build of configuration Debug for project RM57LaunchPad ****
    
    "C:\\ti\\ccs1220\\ccs\\utils\\bin\\gmake" -k -j 8 all -O 
     
    Building file: "../KERNEL/source/adc1bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/adc1bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/adc1bas.cpp"
    Finished building: "../KERNEL/source/adc1bas.cpp"
     
    Building file: "../APPL/appl.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="APPL/appl.d_raw" --obj_directory="APPL"  "../APPL/appl.cpp"
    "../APPL/appl.cpp", line 41: warning #179-D: variable "ApplTaskCount" was declared but never referenced
    "../APPL/appl.cpp", line 62: warning #179-D: variable "autoInitBuffer" was declared but never referenced
    "../APPL/appl.cpp", line 147: warning #179-D: function "MyCtor" was declared but never referenced
    "../APPL/appl.cpp", line 153: warning #179-D: function "MyCCtor" was declared but never referenced
    Finished building: "../APPL/appl.cpp"
     
    Building file: "../KERNEL/source/adc2bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/adc2bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/adc2bas.cpp"
    Finished building: "../KERNEL/source/adc2bas.cpp"
     
    Building file: "../KERNEL/source/autoinitbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/autoinitbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/autoinitbas.cpp"
    Finished building: "../KERNEL/source/autoinitbas.cpp"
     
    Building file: "../KERNEL/source/bdbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bdbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bdbas.cpp"
    Finished building: "../KERNEL/source/bdbas.cpp"
     
    Building file: "../KERNEL/source/bootbas.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bootbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bootbas.c"
    Finished building: "../KERNEL/source/bootbas.c"
     
    Building file: "../KERNEL/source/bacbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bacbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bacbas.cpp"
    Finished building: "../KERNEL/source/bacbas.cpp"
     
    Building file: "../KERNEL/source/bpporbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bpporbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bpporbas.cpp"
    Finished building: "../KERNEL/source/bpporbas.cpp"
     
    Building file: "../KERNEL/source/calbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/calbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/calbas.cpp"
    Finished building: "../KERNEL/source/calbas.cpp"
     
    Building file: "../KERNEL/source/canabas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/canabas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/canabas.cpp"
    Finished building: "../KERNEL/source/canabas.cpp"
     
    Building file: "../KERNEL/source/canbbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/canbbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/canbbas.cpp"
    Finished building: "../KERNEL/source/canbbas.cpp"
     
    Building file: "../KERNEL/source/cancbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/cancbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/cancbas.cpp"
    Finished building: "../KERNEL/source/cancbas.cpp"
     
    Building file: "../KERNEL/source/bpposbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/bpposbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/bpposbas.cpp"
    Finished building: "../KERNEL/source/bpposbas.cpp"
     
    Building file: "../KERNEL/source/corebas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/corebas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/corebas.asm"
    Finished building: "../KERNEL/source/corebas.asm"
     
    Building file: "../KERNEL/source/consolebas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/consolebas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/consolebas.cpp"
    Finished building: "../KERNEL/source/consolebas.cpp"
     
    Building file: "../KERNEL/source/crcbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/crcbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/crcbas.cpp"
    Finished building: "../KERNEL/source/crcbas.cpp"
     
    Building file: "../KERNEL/source/cxxabibas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/cxxabibas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/cxxabibas.cpp"
    Finished building: "../KERNEL/source/cxxabibas.cpp"
     
    Building file: "../KERNEL/source/dccbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/dccbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/dccbas.cpp"
    Finished building: "../KERNEL/source/dccbas.cpp"
     
    Building file: "../KERNEL/source/diagbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/diagbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/diagbas.cpp"
    Finished building: "../KERNEL/source/diagbas.cpp"
     
    Building file: "../KERNEL/source/dwdbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/dwdbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/dwdbas.cpp"
    Finished building: "../KERNEL/source/dwdbas.cpp"
     
    Building file: "../KERNEL/source/emifbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/emifbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/emifbas.cpp"
    Finished building: "../KERNEL/source/emifbas.cpp"
     
    Building file: "../KERNEL/source/emacbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/emacbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/emacbas.cpp"
    Finished building: "../KERNEL/source/emacbas.cpp"
     
    Building file: "../KERNEL/source/epcbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/epcbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/epcbas.cpp"
    Finished building: "../KERNEL/source/epcbas.cpp"
     
    Building file: "../KERNEL/source/erfabas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/erfabas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/erfabas.cpp"
    "../KERNEL/source/erfabas.cpp", line 164: warning #112-D: statement is unreachable
    "../KERNEL/source/erfabas.cpp", line 238: warning #112-D: statement is unreachable
    Finished building: "../KERNEL/source/erfabas.cpp"
     
    Building file: "../KERNEL/source/etpwmbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/etpwmbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/etpwmbas.cpp"
    Finished building: "../KERNEL/source/etpwmbas.cpp"
     
    Building file: "../KERNEL/source/gpiobas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/gpiobas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/gpiobas.cpp"
    Finished building: "../KERNEL/source/gpiobas.cpp"
     
    Building file: "../KERNEL/source/esmbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/esmbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/esmbas.cpp"
    Finished building: "../KERNEL/source/esmbas.cpp"
     
    Building file: "../KERNEL/source/gtarbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/gtarbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/gtarbas.cpp"
    Finished building: "../KERNEL/source/gtarbas.cpp"
     
    Building file: "../KERNEL/source/hmibas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/hmibas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/hmibas.cpp"
    Finished building: "../KERNEL/source/hmibas.cpp"
     
    Building file: "../KERNEL/source/het1bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/het1bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/het1bas.cpp"
    Finished building: "../KERNEL/source/het1bas.cpp"
     
    Building file: "../KERNEL/source/idivbas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/idivbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/idivbas.asm"
    Finished building: "../KERNEL/source/idivbas.asm"
     
    Building file: "../KERNEL/source/i2cbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/i2cbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/i2cbas.cpp"
    Finished building: "../KERNEL/source/i2cbas.cpp"
     
    Building file: "../KERNEL/source/het2bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/het2bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/het2bas.cpp"
    Finished building: "../KERNEL/source/het2bas.cpp"
     
    Building file: "../KERNEL/source/intvecsbas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/intvecsbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/intvecsbas.asm"
    Finished building: "../KERNEL/source/intvecsbas.asm"
     
    Building file: "../KERNEL/source/mpubas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/mpubas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/mpubas.asm"
    Finished building: "../KERNEL/source/mpubas.asm"
     
    Building file: "../KERNEL/source/mainbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/mainbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/mainbas.cpp"
    Finished building: "../KERNEL/source/mainbas.cpp"
     
    Building file: "../KERNEL/source/mem2bas.c"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/mem2bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/mem2bas.c"
    Finished building: "../KERNEL/source/mem2bas.c"
     
    Building file: "../KERNEL/source/newbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/newbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/newbas.cpp"
    Finished building: "../KERNEL/source/newbas.cpp"
     
    Building file: "../KERNEL/source/miscbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/miscbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/miscbas.cpp"
    Finished building: "../KERNEL/source/miscbas.cpp"
     
    Building file: "../KERNEL/source/membas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/membas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/membas.cpp"
    Finished building: "../KERNEL/source/membas.cpp"
     
    Building file: "../KERNEL/source/oscinbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/oscinbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/oscinbas.cpp"
    Finished building: "../KERNEL/source/oscinbas.cpp"
     
    Building file: "../KERNEL/source/pinmuxbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/pinmuxbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/pinmuxbas.cpp"
    Finished building: "../KERNEL/source/pinmuxbas.cpp"
     
    Building file: "../KERNEL/source/rtibas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/rtibas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/rtibas.cpp"
    Finished building: "../KERNEL/source/rtibas.cpp"
     
    Building file: "../KERNEL/source/sciabas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/sciabas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/sciabas.cpp"
    Finished building: "../KERNEL/source/sciabas.cpp"
     
    Building file: "../KERNEL/source/scibbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/scibbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/scibbas.cpp"
    Finished building: "../KERNEL/source/scibbas.cpp"
     
    Building file: "../KERNEL/source/selftest3bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/selftest3bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/selftest3bas.cpp"
    Finished building: "../KERNEL/source/selftest3bas.cpp"
     
    Building file: "../KERNEL/source/spiabas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/spiabas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/spiabas.cpp"
    Finished building: "../KERNEL/source/spiabas.cpp"
     
    Building file: "../KERNEL/source/spibbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/spibbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/spibbas.cpp"
    Finished building: "../KERNEL/source/spibbas.cpp"
     
    Building file: "../KERNEL/source/selftest1bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/selftest1bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/selftest1bas.cpp"
    Finished building: "../KERNEL/source/selftest1bas.cpp"
     
    Building file: "../KERNEL/source/spicbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/spicbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/spicbas.cpp"
    Finished building: "../KERNEL/source/spicbas.cpp"
     
    Building file: "../KERNEL/source/spidbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/spidbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/spidbas.cpp"
    Finished building: "../KERNEL/source/spidbas.cpp"
     
    Building file: "../KERNEL/source/selftest2bas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/selftest2bas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/selftest2bas.cpp"
    Finished building: "../KERNEL/source/selftest2bas.cpp"
     
    Building file: "../KERNEL/source/stoptimerbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/stoptimerbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/stoptimerbas.cpp"
    Finished building: "../KERNEL/source/stoptimerbas.cpp"
     
    Building file: "../KERNEL/source/typeinfobas.asm"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/typeinfobas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/typeinfobas.asm"
    Finished building: "../KERNEL/source/typeinfobas.asm"
     
    Building file: "../KERNEL/source/systembas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/systembas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/systembas.cpp"
    Finished building: "../KERNEL/source/systembas.cpp"
     
    Building file: "../KERNEL/source/stringbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/stringbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/stringbas.cpp"
    Finished building: "../KERNEL/source/stringbas.cpp"
     
    Building file: "../KERNEL/source/tabebas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/tabebas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/tabebas.cpp"
    Finished building: "../KERNEL/source/tabebas.cpp"
     
    Building file: "../KERNEL/source/tverbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/tverbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/tverbas.cpp"
    Finished building: "../KERNEL/source/tverbas.cpp"
     
    Building file: "../KERNEL/source/timerbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/timerbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/timerbas.cpp"
    "../KERNEL/source/timerbas.cpp", line 94: warning #552-D: variable "TimeoutTaskLoopTicksCounter" was set but never used
    "../KERNEL/source/timerbas.cpp", line 95: warning #552-D: variable "MarkTicksCPUTimersTest" was set but never used
    Finished building: "../KERNEL/source/timerbas.cpp"
     
    Building file: "../KERNEL/source/vimbas.cpp"
    Invoking: Arm Compiler
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad" --include_path="C:/PROJETOS/iMUX/VVD2/VVD2_Software-Workspace/RM57LaunchPad/KERNEL/include" -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi --preproc_with_compile --preproc_dependency="KERNEL/source/vimbas.d_raw" --obj_directory="KERNEL/source"  "../KERNEL/source/vimbas.cpp"
    Finished building: "../KERNEL/source/vimbas.cpp"
     
    Building target: "RM57LaunchPad.out"
    Invoking: Arm Linker
    "C:/ti/ccs1220/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armcl" -mv7R5 --code_state=32 --float_support=VFPv3D16 -me -g --diag_warning=225 --diag_wrap=off --display_error_number --enum_type=packed --abi=eabi -z -m"RM57LaunchPad.map" --heap_size=0x800 --stack_size=0x800 --reread_libs --diag_wrap=off --display_error_number --issue_remarks --warn_sections --xml_link_info="RM57LaunchPad_linkInfo.xml" --rom_model -o "RM57LaunchPad.out" "./APPL/appl.obj" "./KERNEL/source/adc1bas.obj" "./KERNEL/source/adc2bas.obj" "./KERNEL/source/autoinitbas.obj" "./KERNEL/source/bacbas.obj" "./KERNEL/source/bdbas.obj" "./KERNEL/source/bootbas.obj" "./KERNEL/source/bpporbas.obj" "./KERNEL/source/bpposbas.obj" "./KERNEL/source/calbas.obj" "./KERNEL/source/canabas.obj" "./KERNEL/source/canbbas.obj" "./KERNEL/source/cancbas.obj" "./KERNEL/source/consolebas.obj" "./KERNEL/source/corebas.obj" "./KERNEL/source/crcbas.obj" "./KERNEL/source/cxxabibas.obj" "./KERNEL/source/dccbas.obj" "./KERNEL/source/diagbas.obj" "./KERNEL/source/dwdbas.obj" "./KERNEL/source/emacbas.obj" "./KERNEL/source/emifbas.obj" "./KERNEL/source/epcbas.obj" "./KERNEL/source/erfabas.obj" "./KERNEL/source/esmbas.obj" "./KERNEL/source/etpwmbas.obj" "./KERNEL/source/gpiobas.obj" "./KERNEL/source/gtarbas.obj" "./KERNEL/source/het1bas.obj" "./KERNEL/source/het2bas.obj" "./KERNEL/source/hmibas.obj" "./KERNEL/source/i2cbas.obj" "./KERNEL/source/idivbas.obj" "./KERNEL/source/intvecsbas.obj" "./KERNEL/source/mainbas.obj" "./KERNEL/source/mem2bas.obj" "./KERNEL/source/membas.obj" "./KERNEL/source/miscbas.obj" "./KERNEL/source/mpubas.obj" "./KERNEL/source/newbas.obj" "./KERNEL/source/oscinbas.obj" "./KERNEL/source/pinmuxbas.obj" "./KERNEL/source/rtibas.obj" "./KERNEL/source/sciabas.obj" "./KERNEL/source/scibbas.obj" "./KERNEL/source/selftest1bas.obj" "./KERNEL/source/selftest2bas.obj" "./KERNEL/source/selftest3bas.obj" "./KERNEL/source/spiabas.obj" "./KERNEL/source/spibbas.obj" "./KERNEL/source/spicbas.obj" "./KERNEL/source/spidbas.obj" "./KERNEL/source/stoptimerbas.obj" "./KERNEL/source/stringbas.obj" "./KERNEL/source/systembas.obj" "./KERNEL/source/tabebas.obj" "./KERNEL/source/timerbas.obj" "./KERNEL/source/tverbas.obj" "./KERNEL/source/typeinfobas.obj" "./KERNEL/source/vimbas.obj" "../linkRM57launchpad.cmd"  
    <Linking>
    Finished building target: "RM57LaunchPad.out"
     
    
    **** Build Finished ****
    

  • The linker makes undocumented presumptions about the startup code in the compiler RTS library.  By moving some of this code to C++, you somehow violate one or more those presumptions.  Even if we determined the details, I doubt there is anything we could do.  We do not test for, and never expected, this combination of circumstances.  

    But moving MemSet and MemCopy to a ".C" file (mem2bas.c) remove all warnings, even with autoinit.cpp. 

    Are you willing to use this as a solution, even though we don't know all the details of why it works?

    Thanks and regards,

    -George