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.
Hello,
I am trying to create a macro library for the first time.
I follow step by step the indications written in ARM Assembly Language Tools v5.1 User's Guide.
I got an assR18.lib file after the command:
c:\ti\ccsv6\tools\compiler\ti-cgt-arm_5.2.2\bin\armar.exe -@assRlibCommands.cmd
Then I placed the assR18.lib file in the Include directory and I cleaned the project.
I got the following warning:
#10189-D archive symbol directory is missing from archive "../include_appli/assR18.lib"
If I replace in source file “.Include assR18.asm” by “.Include assR18.lib” There is no illegal mnemonic error and the compilation seems to be good except that the project is not remade because of error:
gmake: Target `all' not remade because of errors.
**** Build Finished ****
The compiler does not tell us anything about the error.
I tried to build an archive with the following command:
c:\ti\ccsv6\tools\compiler\arm_5.1.5\bin\armlibinfo.exe -o=assR18_Arch.lib assR18.lib
I got a file with only one line inside:
!<arch>__TI_$$LIBINFO/ 1441178127 0 0 0 0
What can I do?
Thanks a lot for your help
Jerome
Hello,
Thanks for your reply.
I tried to recreate the macro library with a new name : assR18.alib.
Effectively I did NOT get the warning #10189-D archive symbol directory is missing from archive "../include_appli/assR18.lib".
But I always got the error : Target `all' not remade because of errors. without any explanation.
So I created manually the macro archive by copy of macros in the same .asm file and all is OK.
Thanks for your help.
Jerome
Hi,
Thanks for your Help.
The message whithout error explanation is the following :
You find in attached file the complete log.
Kind regards
Hello,
Really I never examined the whole log of the console.
When I look at the file that I sent to you I saw there is an error because the end of the macro is not found.
I saw that there is not CRLF after the last .endm line. So I inserted a CRLF at the end of each macro file and the error is changed.
I isolated the library to only one macro instruction and I got the following error:
Unrecognized special character error.
So I send to you:
The macro file named: taskTstTO (I added .txt for upload).
taskTstTO .macro Name .global sp:Name: b taskTstTO? TS:Name:? .word sp:Name: taskTstTO? push {r0} ldr r0,TS:Name:? ldr r0,[r0,#tsk_status] cmps r0,#tsk_No_Timeout pop {r0} .endm
The windows command to create the library is:
c:\ti\ccsv6\tools\compiler\ti-cgt-arm_5.2.2\bin\armar.exe -@assTestTOCommands.txt
The command file: assTestTOCommands.txt
; Command file to create members of the assRtos library a ; Specify library name: asstestTO.alib ; List filenames to be replaced if updated: taskTstTO
The library result: asstestTO.alib (I added .txt for upoad)
!<arch> taskTstTO/ 1441785614 0 0 0 215 ` taskTstTO .macro Name .global sp:Name: b taskTstTO? TS:Name:? .word sp:Name: taskTstTO? push {r0} ldr r0,TS:Name:? ldr r0,[r0,#tsk_status] cmps r0,#tsk_No_Timeout pop {r0} .endm
And the whole console log.
"asstestTO.alib", ERROR! at line 1: [E0003] Only labels and comments may begin in the first column. Make sure that the label name is not a reserved keyword. !<arch> "asstestTO.alib", ERROR! at line 1: [E0002] Illegal mnemonic specified !<arch> "asstestTO.alib", ERROR! at line 2: [E0002] Illegal mnemonic specified taskTstTO/ 1441785614 0 0 0 215 ` "asstestTO.alib", ERROR! at line 2: [E0000] Unrecognized special character taskTstTO/ 1441785614 0 0 0 215 ` 4 Assembly Errors, No Assembly Warnings Errors in Source - Assembler Aborted >> Compilation failure gmake: *** [source_tasks/Task09_BlinkGreenLed.obj] Error 1 'Building file: ../source_tasks/Task10_TurnOffGreenLed.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source_tasks/Task10_TurnOffGreenLed.pp" --obj_directory="source_tasks" "../source_tasks/Task10_TurnOffGreenLed.asm" "asstestTO.alib", ERROR! at line 1: [E0003] Only labels and comments may begin in the first column. Make sure that the label name is not a reserved keyword. !<arch> "asstestTO.alib", ERROR! at line 1: [E0002] Illegal mnemonic specified !<arch> "asstestTO.alib", ERROR! at line 2: [E0002] Illegal mnemonic specified taskTstTO/ 1441785614 0 0 0 215 ` "asstestTO.alib", ERROR! at line 2: [E0000] Unrecognized special character taskTstTO/ 1441785614 0 0 0 215 ` 4 Assembly Errors, No Assembly Warnings Errors in Source - Assembler Aborted >> Compilation failure gmake: *** [source_tasks/Task10_TurnOffGreenLed.obj] Error 1 'Building file: ../source_tasks/Task11_TurnOnGreenLed.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source_tasks/Task11_TurnOnGreenLed.pp" --obj_directory="source_tasks" "../source_tasks/Task11_TurnOnGreenLed.asm" "asstestTO.alib", ERROR! at line 1: [E0003] Only labels and comments may begin in the first column. Make sure that the label name is not a reserved keyword. !<arch> "asstestTO.alib", ERROR! at line 1: [E0002] Illegal mnemonic specified !<arch> "asstestTO.alib", ERROR! at line 2: [E0002] Illegal mnemonic specified taskTstTO/ 1441785614 0 0 0 215 ` "asstestTO.alib", ERROR! at line 2: [E0000] Unrecognized special character taskTstTO/ 1441785614 0 0 0 215 ` Errors in Source - Assembler Aborted 4 Assembly Errors, No Assembly Warnings >> Compilation failure gmake: *** [source_tasks/Task11_TurnOnGreenLed.obj] Error 1 'Building file: ../source_tasks/Task12_Test_St_Reg.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source_tasks/Task12_Test_St_Reg.pp" --obj_directory="source_tasks" "../source_tasks/Task12_Test_St_Reg.asm" 'Finished building: ../source_tasks/Task12_Test_St_Reg.asm' ' ' 'Building file: ../source_tasks/main_.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source_tasks/main_.pp" --obj_directory="source_tasks" "../source_tasks/main_.asm" "asstestTO.alib", ERROR! at line 1: [E0003] Only labels and comments may begin in the first column. Make sure that the label name is not a reserved keyword. !<arch> 4 Assembly Errors, No Assembly Warnings >> Compilation failure "asstestTO.alib", ERROR! at line 1: [E0002] Illegal mnemonic specified !<arch> "asstestTO.alib", ERROR! at line 2: [E0002] Illegal mnemonic specified taskTstTO/ 1441785614 0 0 0 215 ` "asstestTO.alib", ERROR! at line 2: [E0000] Unrecognized special character taskTstTO/ 1441785614 0 0 0 215 ` Errors in Source - Assembler Aborted gmake: *** [source_tasks/main_.obj] Error 1 'Building file: ../source_appli/music_morse_messages.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source_appli/music_morse_messages.pp" --obj_directory="source_appli" "../source_appli/music_morse_messages.asm" 'Finished building: ../source_appli/music_morse_messages.asm' ' ' 'Building file: ../source_appli/subs_DC_motors_10.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source_appli/subs_DC_motors_10.pp" --obj_directory="source_appli" "../source_appli/subs_DC_motors_10.asm" 'Finished building: ../source_appli/subs_DC_motors_10.asm' ' ' 'Building file: ../source_appli/subs_SbS_motors_R20.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source_appli/subs_SbS_motors_R20.pp" --obj_directory="source_appli" "../source_appli/subs_SbS_motors_R20.asm" "asstestTO.alib", ERROR! at line 1: [E0003] Only labels and comments may begin in the first column. Make sure that the label name is not a reserved keyword. !<arch> "asstestTO.alib", ERROR! at line 1: [E0002] Illegal mnemonic specified !<arch> "asstestTO.alib", ERROR! at line 2: [E0002] Illegal mnemonic specified taskTstTO/ 1441785614 0 0 0 215 ` "asstestTO.alib", ERROR! at line 2: [E0000] Unrecognized special character taskTstTO/ 1441785614 0 0 0 215 ` 4 Assembly Errors, No Assembly Warnings Errors in Source - Assembler Aborted >> Compilation failure gmake: *** [source_appli/subs_SbS_motors_R20.obj] Error 1 'Building file: ../source_appli/subs_appli.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source_appli/subs_appli.pp" --obj_directory="source_appli" "../source_appli/subs_appli.asm" 'Finished building: ../source_appli/subs_appli.asm' ' ' 'Building file: ../source_appli/subs_esm_interrupts.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source_appli/subs_esm_interrupts.pp" --obj_directory="source_appli" "../source_appli/subs_esm_interrupts.asm" "asstestTO.alib", ERROR! at line 1: [E0003] Only labels and comments may begin in the first column. Make sure that the label name is not a reserved keyword. !<arch> "asstestTO.alib", ERROR! at line 1: [E0002] Illegal mnemonic specified !<arch> 4 Assembly Errors, No Assembly Warnings "asstestTO.alib", ERROR! at line 2: [E0002] Illegal mnemonic specified taskTstTO/ 1441785614 0 0 0 215 ` "asstestTO.alib", ERROR! at line 2: [E0000] Unrecognized special character taskTstTO/ 1441785614 0 0 0 215 ` Errors in Source - Assembler Aborted >> Compilation failure gmake: *** [source_appli/subs_esm_interrupts.obj] Error 1 'Building file: ../source_appli/subs_het_interrupts.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source_appli/subs_het_interrupts.pp" --obj_directory="source_appli" "../source_appli/subs_het_interrupts.asm" "asstestTO.alib", ERROR! at line 1: [E0003] Only labels and comments may begin in the first column. Make sure that the label name is not a reserved keyword. !<arch> "asstestTO.alib", ERROR! at line 1: [E0002] Illegal mnemonic specified !<arch> "asstestTO.alib", ERROR! at line 2: [E0002] Illegal mnemonic specified 4 Assembly Errors, No Assembly Warnings taskTstTO/ 1441785614 0 0 0 215 ` "asstestTO.alib", ERROR! at line 2: [E0000] Unrecognized special character taskTstTO/ 1441785614 0 0 0 215 ` Errors in Source - Assembler Aborted >> Compilation failure gmake: *** [source_appli/subs_het_interrupts.obj] Error 1 'Building file: ../source_appli/subs_rti_interrupts.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source_appli/subs_rti_interrupts.pp" --obj_directory="source_appli" "../source_appli/subs_rti_interrupts.asm" "asstestTO.alib", ERROR! at line 1: [E0003] Only labels and comments may begin in the first column. Make sure that the label name is not a reserved keyword. !<arch> "asstestTO.alib", ERROR! at line 1: [E0002] Illegal mnemonic specified !<arch> "asstestTO.alib", ERROR! at line 2: [E0002] Illegal mnemonic specified taskTstTO/ 1441785614 0 0 0 215 ` "asstestTO.alib", ERROR! at line 2: [E0000] Unrecognized special character taskTstTO/ 1441785614 0 0 0 215 ` 4 Assembly Errors, No Assembly Warnings Errors in Source - Assembler Aborted >> Compilation failure gmake: *** [source_appli/subs_rti_interrupts.obj] Error 1 'Building file: ../source_appli/subs_sound_R10.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source_appli/subs_sound_R10.pp" --obj_directory="source_appli" "../source_appli/subs_sound_R10.asm" "asstestTO.alib", ERROR! at line 1: [E0003] Only labels and comments may begin in the first column. Make sure that the label name is not a reserved keyword. !<arch> "asstestTO.alib", ERROR! at line 1: [E0002] Illegal mnemonic specified !<arch> "asstestTO.alib", ERROR! at line 2: [E0002] Illegal mnemonic specified taskTstTO/ 1441785614 0 0 0 215 ` "asstestTO.alib", ERROR! at line 2: [E0000] Unrecognized special character taskTstTO/ 1441785614 0 0 0 215 ` Errors in Source - Assembler Aborted 4 Assembly Errors, No Assembly Warnings >> Compilation failure gmake: *** [source_appli/subs_sound_R10.obj] Error 1 'Building file: ../source_appli/vim_int_vect_table.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source_appli/vim_int_vect_table.pp" --obj_directory="source_appli" "../source_appli/vim_int_vect_table.asm" 'Finished building: ../source_appli/vim_int_vect_table.asm' ' ' 'Building file: ../source/Zumo_HET1_01.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/Zumo_HET1_01.pp" --obj_directory="source" "../source/Zumo_HET1_01.c" 'Finished building: ../source/Zumo_HET1_01.c' ' ' 'Building file: ../source/Zumo_HET2_01.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/Zumo_HET2_01.pp" --obj_directory="source" "../source/Zumo_HET2_01.c" 'Finished building: ../source/Zumo_HET2_01.c' ' ' 'Building file: ../source/adc.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/adc.pp" --obj_directory="source" "../source/adc.c" 'Finished building: ../source/adc.c' ' ' 'Building file: ../source/can.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/can.pp" --obj_directory="source" "../source/can.c" 'Finished building: ../source/can.c' ' ' 'Building file: ../source/crc.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/crc.pp" --obj_directory="source" "../source/crc.c" 'Finished building: ../source/crc.c' ' ' 'Building file: ../source/dabort.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/dabort.pp" --obj_directory="source" "../source/dabort.asm" 'Finished building: ../source/dabort.asm' ' ' 'Building file: ../source/dcc.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/dcc.pp" --obj_directory="source" "../source/dcc.c" 'Finished building: ../source/dcc.c' ' ' 'Building file: ../source/dmm.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/dmm.pp" --obj_directory="source" "../source/dmm.c" 'Finished building: ../source/dmm.c' ' ' 'Building file: ../source/emac.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/emac.pp" --obj_directory="source" "../source/emac.c" 'Finished building: ../source/emac.c' ' ' 'Building file: ../source/esm.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/esm.pp" --obj_directory="source" "../source/esm.c" 'Finished building: ../source/esm.c' ' ' 'Building file: ../source/gio.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/gio.pp" --obj_directory="source" "../source/gio.c" 'Finished building: ../source/gio.c' ' ' 'Building file: ../source/het.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/het.pp" --obj_directory="source" "../source/het.c" 'Finished building: ../source/het.c' ' ' 'Building file: ../source/i2c.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/i2c.pp" --obj_directory="source" "../source/i2c.c" 'Finished building: ../source/i2c.c' ' ' 'Building file: ../source/lin.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/lin.pp" --obj_directory="source" "../source/lin.c" 'Finished building: ../source/lin.c' ' ' 'Building file: ../source/mdio.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/mdio.pp" --obj_directory="source" "../source/mdio.c" 'Finished building: ../source/mdio.c' ' ' 'Building file: ../source/mibspi.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/mibspi.pp" --obj_directory="source" "../source/mibspi.c" 'Finished building: ../source/mibspi.c' ' ' 'Building file: ../source/notification.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/notification.pp" --obj_directory="source" "../source/notification.c" 'Finished building: ../source/notification.c' ' ' 'Building file: ../source/phy_dp83640.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/phy_dp83640.pp" --obj_directory="source" "../source/phy_dp83640.c" 'Finished building: ../source/phy_dp83640.c' ' ' 'Building file: ../source/pinmux.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/pinmux.pp" --obj_directory="source" "../source/pinmux.c" 'Finished building: ../source/pinmux.c' ' ' 'Building file: ../source/rti.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/rti.pp" --obj_directory="source" "../source/rti.c" 'Finished building: ../source/rti.c' ' ' 'Building file: ../source/rtp.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/rtp.pp" --obj_directory="source" "../source/rtp.c" 'Finished building: ../source/rtp.c' ' ' 'Building file: ../source/sci.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/sci.pp" --obj_directory="source" "../source/sci.c" 'Finished building: ../source/sci.c' ' ' 'Building file: ../source/spi.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/spi.pp" --obj_directory="source" "../source/spi.c" 'Finished building: ../source/spi.c' ' ' 'Building file: ../source/sys_core.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/sys_core.pp" --obj_directory="source" "../source/sys_core.asm" 'Finished building: ../source/sys_core.asm' ' ' 'Building file: ../source/sys_dma.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/sys_dma.pp" --obj_directory="source" "../source/sys_dma.c" 'Finished building: ../source/sys_dma.c' ' ' 'Building file: ../source/sys_intvecs.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/sys_intvecs.pp" --obj_directory="source" "../source/sys_intvecs.asm" 'Finished building: ../source/sys_intvecs.asm' ' ' 'Building file: ../source/sys_mpu.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/sys_mpu.pp" --obj_directory="source" "../source/sys_mpu.asm" 'Finished building: ../source/sys_mpu.asm' ' ' 'Building file: ../source/sys_pcr.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/sys_pcr.pp" --obj_directory="source" "../source/sys_pcr.c" 'Finished building: ../source/sys_pcr.c' ' ' 'Building file: ../source/sys_phantom.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/sys_phantom.pp" --obj_directory="source" "../source/sys_phantom.c" 'Finished building: ../source/sys_phantom.c' ' ' 'Building file: ../source/sys_pmm.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/sys_pmm.pp" --obj_directory="source" "../source/sys_pmm.c" 'Finished building: ../source/sys_pmm.c' ' ' 'Building file: ../source/sys_pmu.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/sys_pmu.pp" --obj_directory="source" "../source/sys_pmu.asm" 'Finished building: ../source/sys_pmu.asm' ' ' 'Building file: ../source/sys_selftest.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/sys_selftest.pp" --obj_directory="source" "../source/sys_selftest.c" 'Finished building: ../source/sys_selftest.c' ' ' 'Building file: ../source/sys_startup.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/sys_startup.pp" --obj_directory="source" "../source/sys_startup.c" 'Finished building: ../source/sys_startup.c' ' ' 'Building file: ../source/sys_vim.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/sys_vim.pp" --obj_directory="source" "../source/sys_vim.c" 'Finished building: ../source/sys_vim.c' ' ' 'Building file: ../source/system.c' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="source/system.pp" --obj_directory="source" "../source/system.c" 'Finished building: ../source/system.c' ' ' 'Building file: ../libraries_appli/assRtos_R18_lib.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="libraries_appli/assRtos_R18_lib.pp" --obj_directory="libraries_appli" "../libraries_appli/assRtos_R18_lib.asm" 'Finished building: ../libraries_appli/assRtos_R18_lib.asm' ' ' 'Building file: ../include_init/adc_reg.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_init/adc_reg.pp" --obj_directory="include_init" "../include_init/adc_reg.asm" 'Finished building: ../include_init/adc_reg.asm' ' ' 'Building file: ../include_init/esm_reg_R10.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_init/esm_reg_R10.pp" --obj_directory="include_init" "../include_init/esm_reg_R10.asm" 'Finished building: ../include_init/esm_reg_R10.asm' ' ' 'Building file: ../include_init/gio_reg.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_init/gio_reg.pp" --obj_directory="include_init" "../include_init/gio_reg.asm" 'Finished building: ../include_init/gio_reg.asm' ' ' 'Building file: ../include_init/het_reg_R12.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_init/het_reg_R12.pp" --obj_directory="include_init" "../include_init/het_reg_R12.asm" 'Finished building: ../include_init/het_reg_R12.asm' ' ' 'Building file: ../include_init/rti_reg_R21.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_init/rti_reg_R21.pp" --obj_directory="include_init" "../include_init/rti_reg_R21.asm" 'Finished building: ../include_init/rti_reg_R21.asm' ' ' 'Building file: ../include_init/spi_reg.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_init/spi_reg.pp" --obj_directory="include_init" "../include_init/spi_reg.asm" 'Finished building: ../include_init/spi_reg.asm' ' ' 'Building file: ../include_init/vim_reg_R1.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_init/vim_reg_R1.pp" --obj_directory="include_init" "../include_init/vim_reg_R1.asm" 'Finished building: ../include_init/vim_reg_R1.asm' ' ' 'Building file: ../include_appli/float_const.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_appli/float_const.pp" --obj_directory="include_appli" "../include_appli/float_const.asm" 'Finished building: ../include_appli/float_const.asm' ' ' 'Building file: ../include_appli/het_prg.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_appli/het_prg.pp" --obj_directory="include_appli" "../include_appli/het_prg.asm" 'Finished building: ../include_appli/het_prg.asm' ' ' 'Building file: ../include_appli/macro_Io_HCG.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_appli/macro_Io_HCG.pp" --obj_directory="include_appli" "../include_appli/macro_Io_HCG.asm" 'Finished building: ../include_appli/macro_Io_HCG.asm' ' ' 'Building file: ../include_appli/macro_Io_R12.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_appli/macro_Io_R12.pp" --obj_directory="include_appli" "../include_appli/macro_Io_R12.asm" 'Finished building: ../include_appli/macro_Io_R12.asm' ' ' 'Building file: ../include_appli/macro_SbS_motors_R11.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_appli/macro_SbS_motors_R11.pp" --obj_directory="include_appli" "../include_appli/macro_SbS_motors_R11.asm" 'Finished building: ../include_appli/macro_SbS_motors_R11.asm' ' ' 'Building file: ../include_appli/macro_appli.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_appli/macro_appli.pp" --obj_directory="include_appli" "../include_appli/macro_appli.asm" 'Finished building: ../include_appli/macro_appli.asm' ' ' 'Building file: ../include_appli/macro_het_R11.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_appli/macro_het_R11.pp" --obj_directory="include_appli" "../include_appli/macro_het_R11.asm" 'Finished building: ../include_appli/macro_het_R11.asm' ' ' 'Building file: ../include_appli/macro_rti_R10.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_appli/macro_rti_R10.pp" --obj_directory="include_appli" "../include_appli/macro_rti_R10.asm" 'Finished building: ../include_appli/macro_rti_R10.asm' ' ' 'Building file: ../include_appli/macro_sounds_R10.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_appli/macro_sounds_R10.pp" --obj_directory="include_appli" "../include_appli/macro_sounds_R10.asm" 'Finished building: ../include_appli/macro_sounds_R10.asm' ' ' 'Building file: ../include_appli/macro_util_R12.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_appli/macro_util_R12.pp" --obj_directory="include_appli" "../include_appli/macro_util_R12.asm" 'Finished building: ../include_appli/macro_util_R12.asm' ' ' 'Building file: ../include_appli/macro_vim_R10.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_appli/macro_vim_R10.pp" --obj_directory="include_appli" "../include_appli/macro_vim_R10.asm" 'Finished building: ../include_appli/macro_vim_R10.asm' ' ' 'Building file: ../include_appli/param_appli.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_appli/param_appli.pp" --obj_directory="include_appli" "../include_appli/param_appli.asm" 'Finished building: ../include_appli/param_appli.asm' ' ' 'Building file: ../include_appli/parameters.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_appli/parameters.pp" --obj_directory="include_appli" "../include_appli/parameters.asm" 'Finished building: ../include_appli/parameters.asm' ' ' 'Building file: ../include_appli/sym_Io.asm' 'Invoking: ARM Compiler' "C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/bin/armcl" -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi -me -O0 --fp_mode=relaxed --include_path="C:/ti/ccsv6/tools/compiler/ti-cgt-arm_5.2.2/include" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/libraries_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_init" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include_appli" --include_path="D:/Data_RM48/RM48_Zumo_4_06L/include" -g --display_error_number --diag_warning=225 --diag_wrap=off --enum_type=packed --preproc_with_compile --preproc_dependency="include_appli/sym_Io.pp" --obj_directory="include_appli" "../include_appli/sym_Io.asm" 'Finished building: ../include_appli/sym_Io.asm' ' ' gmake: Target `all' not remade because of errors. **** Build Finished ****
Thanks for your help.
Jerome