Record errors encountered in CCS

Disclaimer: This article is a blogger original article, shall not be reproduced without the bloggers allowed. https://blog.csdn.net/Mr_zhuo_/article/details/88852955

1. ICEPICK_C: Error connecting to the target:

(Error -180 @ 0xFFFFFF4C) The controller has detected a target power loss.

The user must turn-on or connect the power supply for the target. (Emulation package 5.1.232.0) 

Description emulator problems arise driver

[Solution]: reinstall the driver XDS560 emulator. The computer then restart.

 

2.  could not open source file "interrupt.h"    main.c    /FaceDetect    line 28    C/C++ Problem

[Solution] :( below for CCS 5.5, other versions may not apply )

1) Right project name and select Properties. (Or left-click to select the project, press Alt + Enter)

2) Select Build-> C6000 Compiler-> Include Options, select the appropriate header file directory    Note: ../ include the include the parent directory

3) Select Build-> C6000 Linker-> File Search Path, choose the appropriate library file directory

[ How to add header files? ] Action Library Filers of
Rst.lib : C language run-time support libraries, the establishment of C runtime environment, mainly by the _c_int00 complete stack pointer, initialized global variables, call the main ()
Csl.lib : Chip Support Library, programmable on-chip peripherals the operation of
the DSPLIB / IMGLIB : signal processing library, using mathematical calculations on different DSP function optimization of
general video / audio and the LIB : e.g. 263,264, jpeg, G.7XX, mp3, wmv. . .
Other own package the LIB : e.g. bsl.lib (board source library), the operation of the DSP resources on the system board.

"The role of CCS in each project file" https://blog.csdn.net/wordwarwordwar/article/details/83445444

 

Guess you like

Origin blog.csdn.net/Mr_zhuo_/article/details/88852955