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)
Explanation: There is a problem with the emulator driver
【Solution】: Reinstall the driver of XDS560 emulator and then restart the computer.
2.could not open source file "interrupt.h"main.c/FaceDetectline 28C/C++ Problem
[Solution]: (The following is for CCS 5.5, other versions may not apply)
1) Right-click the project name and select Properties. (Or left-click the project and press Alt+Enter)
2) Select Build->C6000 Compiler->Include Options, and select the corresponding header file directory. Note: ../include is the parent directory of include.
3) Select Build->C6000 Linker->File Search Path, and select the corresponding library file directory.
[How to add header files?] The role of Library Filers
Rst.lib: C language real-time operation support library, establishes C operation environment, mainly completes setting stack pointer, initializing global variables, and calling main() by _c_int00
Csl.lib: chip support library, realizes the operation of on-chip peripherals
DSPLIB/IMGLIB: signal processing library, uses functions optimized for different DSPs to perform mathematical operations
General video/audio LIB: such as 263, 264, jpeg, G.7XX, mp3, wmv. . .
Other self-packaged LIBs: such as bsl.lib (board source library), operate on DSP system board resources.
|