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

2023-11-21 00:20

本文主要是介绍初学DSP(3)-TMS320F280049C lib的使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

 


COFF和ELF区别

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

 

 

 

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

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

 

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

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

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

 

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

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

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

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

依照这个原理,在编译编译器自带的源文件,也可以用库,编译本来使用libc.a,删除使用rts2800_fpu32_eabi.lib  rts2800_fpu32_fast_supplement_eabi.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文件可以不要了。

 

怎么使用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

配置cmd文件

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

 

不同编译情况下输出信息

使用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 ****

 

这篇关于初学DSP(3)-TMS320F280049C lib的使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/398475

相关文章

Spring IoC 容器的使用详解(最新整理)

《SpringIoC容器的使用详解(最新整理)》文章介绍了Spring框架中的应用分层思想与IoC容器原理,通过分层解耦业务逻辑、数据访问等模块,IoC容器利用@Component注解管理Bean... 目录1. 应用分层2. IoC 的介绍3. IoC 容器的使用3.1. bean 的存储3.2. 方法注

Python内置函数之classmethod函数使用详解

《Python内置函数之classmethod函数使用详解》:本文主要介绍Python内置函数之classmethod函数使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录1. 类方法定义与基本语法2. 类方法 vs 实例方法 vs 静态方法3. 核心特性与用法(1编程客

Linux中压缩、网络传输与系统监控工具的使用完整指南

《Linux中压缩、网络传输与系统监控工具的使用完整指南》在Linux系统管理中,压缩与传输工具是数据备份和远程协作的桥梁,而系统监控工具则是保障服务器稳定运行的眼睛,下面小编就来和大家详细介绍一下它... 目录引言一、压缩与解压:数据存储与传输的优化核心1. zip/unzip:通用压缩格式的便捷操作2.

使用Python实现可恢复式多线程下载器

《使用Python实现可恢复式多线程下载器》在数字时代,大文件下载已成为日常操作,本文将手把手教你用Python打造专业级下载器,实现断点续传,多线程加速,速度限制等功能,感兴趣的小伙伴可以了解下... 目录一、智能续传:从崩溃边缘抢救进度二、多线程加速:榨干网络带宽三、速度控制:做网络的好邻居四、终端交互

Python中注释使用方法举例详解

《Python中注释使用方法举例详解》在Python编程语言中注释是必不可少的一部分,它有助于提高代码的可读性和维护性,:本文主要介绍Python中注释使用方法的相关资料,需要的朋友可以参考下... 目录一、前言二、什么是注释?示例:三、单行注释语法:以 China编程# 开头,后面的内容为注释内容示例:示例:四

Go语言数据库编程GORM 的基本使用详解

《Go语言数据库编程GORM的基本使用详解》GORM是Go语言流行的ORM框架,封装database/sql,支持自动迁移、关联、事务等,提供CRUD、条件查询、钩子函数、日志等功能,简化数据库操作... 目录一、安装与初始化1. 安装 GORM 及数据库驱动2. 建立数据库连接二、定义模型结构体三、自动迁

ModelMapper基本使用和常见场景示例详解

《ModelMapper基本使用和常见场景示例详解》ModelMapper是Java对象映射库,支持自动映射、自定义规则、集合转换及高级配置(如匹配策略、转换器),可集成SpringBoot,减少样板... 目录1. 添加依赖2. 基本用法示例:简单对象映射3. 自定义映射规则4. 集合映射5. 高级配置匹

Spring 框架之Springfox使用详解

《Spring框架之Springfox使用详解》Springfox是Spring框架的API文档工具,集成Swagger规范,自动生成文档并支持多语言/版本,模块化设计便于扩展,但存在版本兼容性、性... 目录核心功能工作原理模块化设计使用示例注意事项优缺点优点缺点总结适用场景建议总结Springfox 是

嵌入式数据库SQLite 3配置使用讲解

《嵌入式数据库SQLite3配置使用讲解》本文强调嵌入式项目中SQLite3数据库的重要性,因其零配置、轻量级、跨平台及事务处理特性,可保障数据溯源与责任明确,详细讲解安装配置、基础语法及SQLit... 目录0、惨痛教训1、SQLite3环境配置(1)、下载安装SQLite库(2)、解压下载的文件(3)、

使用Python绘制3D堆叠条形图全解析

《使用Python绘制3D堆叠条形图全解析》在数据可视化的工具箱里,3D图表总能带来眼前一亮的效果,本文就来和大家聊聊如何使用Python实现绘制3D堆叠条形图,感兴趣的小伙伴可以了解下... 目录为什么选择 3D 堆叠条形图代码实现:从数据到 3D 世界的搭建核心代码逐行解析细节优化应用场景:3D 堆叠图