初学DSP(3)-TMS320F280049C lib的使用

 


COFF和ELF区别

初学DSP(3)-TMS320F280049C  lib的使用

Floating Point Unit (FPU)

Trigonometric Math Unit (TMU)

Control Law Accelerator(CLA)

 对lib文件的理解

https://www.jianshu.com/p/ee2affaa3bac

库(Library)说白了就是一段编译好的二进制代码,加上头文件就可以供别人使用。

我们一般代码中往往要引入许多第三方编译好的库,有些是静态链接库static library, 有些是动态链接库dll。引入库的目的一是减少代码的编译时间,二是只提供函数/方法接口,可以有效的保护源码不被泄露

DSP上编译静态库和Visual Studio上的区别
相同之处:都要编写.h,cpp文件,工程输出设置为static library。不同之处:采用不同的complier编译cpp,vs2017采用Microsoft C++编译器编译cpp, DSP上采用gmake编译cpp。


作者:侠之大者_7d3f
链接:https://www.jianshu.com/p/30257579e092
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

 

E:\ti\c2000\C2000Ware_3_03_00_00\libraries\dsp\FPU\c28\lib

c28x_fpu_dsp_library_eabi.lib

 

初学DSP(3)-TMS320F280049C  lib的使用

 

 

lib的使用(输出信息在最后)

https://jingyan.baidu.com/article/7e440953774bd12fc0e2efdd.html

 

driverlib.lib  对应的是头文件 driverlib.h,而 driverlib.h  编译了device.c   device.h 

那可以只需要driverlib.lib和device.h  device.c  编译通过了

初学DSP(3)-TMS320F280049C  lib的使用

两个警告,是因为driverlib_coff.lib编译进去了,可以删掉,code_start重复定义了。在属性符号管理删掉即可

初学DSP(3)-TMS320F280049C  lib的使用

 

可以对比一下,用C文件编译和lib文件编译的时间

1、用C文件编译,可以看到它把E:\CCS_workplace\test\source_reg 里面文件编译了一遍,时间较长

初学DSP(3)-TMS320F280049C  lib的使用

2、我把E:\CCS_workplace\test\source_reg 折叠,会自动用driverlib.lib 编译,时间较短

初学DSP(3)-TMS320F280049C  lib的使用

最后把E:\CCS_workplace\test\source_reg 驱动源文件都删了,依然可以。

依照这个原理,在编译编译器自带的源文件,也可以用库,编译本来使用libc.a,删除使用rts2800_fpu32_eabi.lib  rts2800_fpu32_fast_supplement_eabi.lib

初学DSP(3)-TMS320F280049C  lib的使用

 

编译的输出信息,信息更少,时间最短。

**** Build of configuration Release for project test ****

"E:\\ti\\ccs1011\\ccs\\utils\\bin\\gmake" -k -j 4 all -O 
 
Building target: "test.out"
Invoking: C2000 Linker
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --

advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi -z -m"test.map" --stack_size=0x200 --warn_sections -i"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-

c2000_20.2.1.LTS/lib" -i"E:/CCS_workplace/test" -i"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --reread_libs --diag_wrap=off --display_error_number --

xml_link_info="test_linkInfo.xml" --rom_model -o "test.out" "./board.obj" "./device.obj" 

"./f28004x_codestartbranch.obj" "./f28004x_usdelay.obj" "./main.obj" 

"../28004x_generic_flash_lnk.cmd" "../driverlib.lib" "../driverlib_eabi.lib" 

"../f28004x_headers_nonbios.cmd" "../rts2800_fpu32_eabi.lib" "../rts2800_fpu32_fast_supplement_eabi.lib"  -

l"E:/CCS_workplace/test/rts2800_fpu32_eabi.lib" -l"E:/CCS_workplace/test/rts2800_fpu32_fast_supplement_eabi.lib" -l"E:/CCS_workplace/test/driverlib.lib" 
<Linking>
Finished building target: "test.out"
 

**** Build Finished ****

使用device.lib,缺点就是,不能改里面的函数了。

使用rts2800_fpu32_eabi.lib,加速编译

最简单的工程文件,C文件可以不要了。

初学DSP(3)-TMS320F280049C  lib的使用

 

怎么使用libraries下的库

示例

E:\ti\c2000\C2000Ware_3_03_00_00\libraries\dsp\FPU\c28\examples\fft\cfft_f32

参考文档

E:\ti\c2000\C2000Ware_3_03_00_00\libraries\dsp\FPU\c28\docs

初学DSP(3)-TMS320F280049C  lib的使用

配置cmd文件

E:\ti\ccs1011\ccs\ccs_base\c2000\include

初学DSP(3)-TMS320F280049C  lib的使用

 

不同编译情况下输出信息

使用C文件编译的输出信息

**** Clean-only build of configuration Release for project test ****

"E:\\ti\\ccs1011\\ccs\\utils\\bin\\gmake" -k -j 4 clean -O 
 
DEL /F  "test.hex"  "test.out" 
DEL /F "board.obj" "device.obj" "f28004x_codestartbranch.obj" "f28004x_usdelay.obj" "main.obj" 
DEL /F "board.d" "device.d" "main.d" 
DEL /F "f28004x_codestartbranch.d" "f28004x_usdelay.d" 
找不到 E:\CCS_workplace\test\Release\f28004x_codestartbranch.d
Finished clean
 

**** Build Finished ****

**** Build of configuration Release for project test ****

"E:\\ti\\ccs1011\\ccs\\utils\\bin\\gmake" -k -j 4 all -O 
 
Building file: "../f28004x_codestartbranch.asm"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="f28004x_codestartbranch.d_raw"  "../f28004x_codestartbranch.asm"
Finished building: "../f28004x_codestartbranch.asm"
 
Building file: "../f28004x_usdelay.asm"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="f28004x_usdelay.d_raw"  "../f28004x_usdelay.asm"
Finished building: "../f28004x_usdelay.asm"
 
Building file: "../board.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="board.d_raw"  "../board.c"
Finished building: "../board.c"
 
Building file: "../source_reg/adc.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/adc.d_raw" --obj_directory="source_reg"  "../source_reg/adc.c"
Finished building: "../source_reg/adc.c"
 
Building file: "../device.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="device.d_raw"  "../device.c"
Finished building: "../device.c"
 
Building file: "../source_reg/asysctl.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/asysctl.d_raw" --obj_directory="source_reg"  "../source_reg/asysctl.c"
Finished building: "../source_reg/asysctl.c"
 
Building file: "../main.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="main.d_raw"  "../main.c"
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 333 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 334 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 334 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 337 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 338 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 340 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 341 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 341 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 342 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 342 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 346 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 347 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 348 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 350 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 351 (col. 11): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 351 (col. 11): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 352 (col. 11): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 352 (col. 11): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 358 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 359 (col. 11): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 360 (col. 11): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 362 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 363 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 363 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 366 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 367 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 375 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 376 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 376 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 376 (col. 43): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 376 (col. 43): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 377 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 378 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 378 (col. 44): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 412 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 414 (col. 9): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 414 (col. 9): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 416 (col. 13): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 416 (col. 13): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 420 (col. 9): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 420 (col. 9): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 422 (col. 13): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 422 (col. 13): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 429 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 431 (col. 9): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 433 (col. 13): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 437 (col. 9): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 439 (col. 13): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
Finished building: "../main.c"
 
Building file: "../source_reg/cla.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/cla.d_raw" --obj_directory="source_reg"  "../source_reg/cla.c"
Finished building: "../source_reg/cla.c"
 
Building file: "../source_reg/clapromcrc.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/clapromcrc.d_raw" --obj_directory="source_reg"  "../source_reg/clapromcrc.c"
Finished building: "../source_reg/clapromcrc.c"
 
Building file: "../source_reg/can.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/can.d_raw" --obj_directory="source_reg"  "../source_reg/can.c"
Finished building: "../source_reg/can.c"
 
Building file: "../source_reg/clb.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/clb.d_raw" --obj_directory="source_reg"  "../source_reg/clb.c"
Finished building: "../source_reg/clb.c"
 
Building file: "../source_reg/cmpss.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/cmpss.d_raw" --obj_directory="source_reg"  "../source_reg/cmpss.c"
Finished building: "../source_reg/cmpss.c"
 
Building file: "../source_reg/cputimer.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/cputimer.d_raw" --obj_directory="source_reg"  "../source_reg/cputimer.c"
Finished building: "../source_reg/cputimer.c"
 
Building file: "../source_reg/dac.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/dac.d_raw" --obj_directory="source_reg"  "../source_reg/dac.c"
"../source_reg/dac.c", line 74 (col. 38): advice #2615-D: (Performance) Use --fp_mode=relaxed to enable TMU hardware support for FP division.
Finished building: "../source_reg/dac.c"
 
Building file: "../source_reg/dcc.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/dcc.d_raw" --obj_directory="source_reg"  "../source_reg/dcc.c"
Finished building: "../source_reg/dcc.c"
 
Building file: "../source_reg/dcsm.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/dcsm.d_raw" --obj_directory="source_reg"  "../source_reg/dcsm.c"
Finished building: "../source_reg/dcsm.c"
 
Building file: "../source_reg/ecap.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/ecap.d_raw" --obj_directory="source_reg"  "../source_reg/ecap.c"
Finished building: "../source_reg/ecap.c"
 
Building file: "../source_reg/dma.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/dma.d_raw" --obj_directory="source_reg"  "../source_reg/dma.c"
Finished building: "../source_reg/dma.c"
 
Building file: "../source_reg/epwm.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/epwm.d_raw" --obj_directory="source_reg"  "../source_reg/epwm.c"
"../source_reg/epwm.c", line 95 (col. 54): advice #2615-D: (Performance) Use --fp_mode=relaxed to enable TMU hardware support for FP division.
Finished building: "../source_reg/epwm.c"
 
Building file: "../source_reg/eqep.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/eqep.d_raw" --obj_directory="source_reg"  "../source_reg/eqep.c"
Finished building: "../source_reg/eqep.c"
 
Building file: "../source_reg/flash.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/flash.d_raw" --obj_directory="source_reg"  "../source_reg/flash.c"
Finished building: "../source_reg/flash.c"
 
Building file: "../source_reg/fsi.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/fsi.d_raw" --obj_directory="source_reg"  "../source_reg/fsi.c"
Finished building: "../source_reg/fsi.c"
 
Building file: "../source_reg/hrcap.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/hrcap.d_raw" --obj_directory="source_reg"  "../source_reg/hrcap.c"
Finished building: "../source_reg/hrcap.c"
 
Building file: "../source_reg/hrpwm.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/hrpwm.d_raw" --obj_directory="source_reg"  "../source_reg/hrpwm.c"
Finished building: "../source_reg/hrpwm.c"
 
Building file: "../source_reg/gpio.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/gpio.d_raw" --obj_directory="source_reg"  "../source_reg/gpio.c"
Finished building: "../source_reg/gpio.c"
 
Building file: "../source_reg/i2c.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/i2c.d_raw" --obj_directory="source_reg"  "../source_reg/i2c.c"
Finished building: "../source_reg/i2c.c"
 
Building file: "../source_reg/interrupt.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/interrupt.d_raw" --obj_directory="source_reg"  "../source_reg/interrupt.c"
Finished building: "../source_reg/interrupt.c"
 
Building file: "../source_reg/lin.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/lin.d_raw" --obj_directory="source_reg"  "../source_reg/lin.c"
Finished building: "../source_reg/lin.c"
 
Building file: "../source_reg/pga.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/pga.d_raw" --obj_directory="source_reg"  "../source_reg/pga.c"
Finished building: "../source_reg/pga.c"
 
Building file: "../source_reg/memcfg.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/memcfg.d_raw" --obj_directory="source_reg"  "../source_reg/memcfg.c"
Finished building: "../source_reg/memcfg.c"
 
Building file: "../source_reg/sci.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/sci.d_raw" --obj_directory="source_reg"  "../source_reg/sci.c"
Finished building: "../source_reg/sci.c"
 
Building file: "../source_reg/pmbus.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/pmbus.d_raw" --obj_directory="source_reg"  "../source_reg/pmbus.c"
Finished building: "../source_reg/pmbus.c"
 
Building file: "../source_reg/sdfm.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/sdfm.d_raw" --obj_directory="source_reg"  "../source_reg/sdfm.c"
Finished building: "../source_reg/sdfm.c"
 
Building file: "../source_reg/spi.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/spi.d_raw" --obj_directory="source_reg"  "../source_reg/spi.c"
Finished building: "../source_reg/spi.c"
 
Building file: "../source_reg/version.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/version.d_raw" --obj_directory="source_reg"  "../source_reg/version.c"
Finished building: "../source_reg/version.c"
 
Building file: "../source_reg/sysctl.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/sysctl.d_raw" --obj_directory="source_reg"  "../source_reg/sysctl.c"
Finished building: "../source_reg/sysctl.c"
 
Building file: "../source_reg/xbar.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="source_reg/xbar.d_raw" --obj_directory="source_reg"  "../source_reg/xbar.c"
Finished building: "../source_reg/xbar.c"
 
Building target: "test.out"
Invoking: C2000 Linker
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi -z -m"test.map" --stack_size=0x200 --warn_sections -i"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/lib" -i"E:/CCS_workplace/test" -i"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --reread_libs --diag_wrap=off --display_error_number --xml_link_info="test_linkInfo.xml" --rom_model -o "test.out" "./board.obj" "./device.obj" "./f28004x_codestartbranch.obj" "./f28004x_usdelay.obj" "./main.obj" "./source_reg/adc.obj" "./source_reg/asysctl.obj" "./source_reg/can.obj" "./source_reg/cla.obj" "./source_reg/clapromcrc.obj" "./source_reg/clb.obj" "./source_reg/cmpss.obj" "./source_reg/cputimer.obj" "./source_reg/dac.obj" "./source_reg/dcc.obj" "./source_reg/dcsm.obj" "./source_reg/dma.obj" "./source_reg/ecap.obj" "./source_reg/epwm.obj" "./source_reg/eqep.obj" "./source_reg/flash.obj" "./source_reg/fsi.obj" "./source_reg/gpio.obj" "./source_reg/hrcap.obj" "./source_reg/hrpwm.obj" "./source_reg/i2c.obj" "./source_reg/interrupt.obj" "./source_reg/lin.obj" "./source_reg/memcfg.obj" "./source_reg/pga.obj" "./source_reg/pmbus.obj" "./source_reg/sci.obj" "./source_reg/sdfm.obj" "./source_reg/spi.obj" "./source_reg/sysctl.obj" "./source_reg/version.obj" "./source_reg/xbar.obj" "../28004x_generic_flash_lnk.cmd" "../driverlib.lib" "../driverlib_eabi.lib" "../f28004x_headers_nonbios.cmd" "../rts2800_fpu32_eabi.lib" "../rts2800_fpu32_fast_supplement_eabi.lib"  -llibc.a -l"E:/CCS_workplace/test/driverlib.lib" 
<Linking>
Finished building target: "test.out"
 

**** Build Finished ****

 

用driverlib.lib编译的输出信息


**** Build of configuration Release for project test ****

"E:\\ti\\ccs1011\\ccs\\utils\\bin\\gmake" -k -j 4 all -O 
 
Building file: "../f28004x_codestartbranch.asm"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="f28004x_codestartbranch.d_raw"  "../f28004x_codestartbranch.asm"
Finished building: "../f28004x_codestartbranch.asm"
 
Building file: "../f28004x_usdelay.asm"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="f28004x_usdelay.d_raw"  "../f28004x_usdelay.asm"
Finished building: "../f28004x_usdelay.asm"
 
Building file: "../board.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="board.d_raw"  "../board.c"
Finished building: "../board.c"
 
Building file: "../device.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="device.d_raw"  "../device.c"
Finished building: "../device.c"
 
Building file: "../main.c"
Invoking: C2000 Compiler
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --include_path="E:/CCS_workplace/test" --include_path="E:/CCS_workplace/test/include" --include_path="E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="main.d_raw"  "../main.c"
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 333 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 334 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 334 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 337 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 338 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 340 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 341 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 341 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 342 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 342 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 346 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 347 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 348 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 350 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 351 (col. 11): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 351 (col. 11): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 352 (col. 11): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 352 (col. 11): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 358 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 359 (col. 11): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 360 (col. 11): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 362 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 363 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 363 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 366 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 367 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 375 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 376 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 376 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 376 (col. 43): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 376 (col. 43): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 377 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 378 (col. 10): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 378 (col. 44): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 412 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 414 (col. 9): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 414 (col. 9): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 416 (col. 13): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 416 (col. 13): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 420 (col. 9): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 420 (col. 9): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 422 (col. 13): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 422 (col. 13): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 429 (col. 37): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 431 (col. 9): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 433 (col. 13): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 437 (col. 9): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include/_defs.h", line 439 (col. 13): advice #3195-D: (Performance) EABI double precision is 64-bits as opposed to 32-bits for COFF. Consider changing doubles to floats for improved performance in FPU32-mode.
Finished building: "../main.c"
 
Building target: "test.out"
Invoking: C2000 Linker
"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/bin/cl2000" -v28 -ml -mt --cla_support=cla2 --float_support=fpu32 --tmu_support=tmu0 --vcu_support=vcu0 -O2 --advice:performance=all --define=_INLINE --define=_LAUNCHXL_F280049C --define=_FLASH --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi -z -m"test.map" --stack_size=0x200 --warn_sections -i"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/lib" -i"E:/CCS_workplace/test" -i"E:/ti/ccs1011/ccs/tools/compiler/ti-cgt-c2000_20.2.1.LTS/include" --reread_libs --diag_wrap=off --display_error_number --xml_link_info="test_linkInfo.xml" --rom_model -o "test.out" "./board.obj" "./device.obj" "./f28004x_codestartbranch.obj" "./f28004x_usdelay.obj" "./main.obj" "../28004x_generic_flash_lnk.cmd" "../driverlib.lib" "../driverlib_eabi.lib" "../f28004x_headers_nonbios.cmd" "../rts2800_fpu32_eabi.lib" "../rts2800_fpu32_fast_supplement_eabi.lib"  -llibc.a -l"E:/CCS_workplace/test/driverlib.lib" 
<Linking>
Finished building target: "test.out"
 

**** Build Finished ****

 

上一篇:如何创建HTML Mashup并插入到SAP Cloud for Customer标准页面里


下一篇:P1091 合唱队形(C++_dp)